結果

問題 No.1496 不思議な数え上げ
ユーザー kotatsugamekotatsugame
提出日時 2021-05-02 04:22:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 654 ms / 3,000 ms
コード長 743 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-07-20 12:48:39
合計ジャッジ時間 25,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 530 ms
16,128 KB
testcase_04 AC 523 ms
16,000 KB
testcase_05 AC 528 ms
15,872 KB
testcase_06 AC 552 ms
16,000 KB
testcase_07 AC 549 ms
16,128 KB
testcase_08 AC 545 ms
16,000 KB
testcase_09 AC 548 ms
15,872 KB
testcase_10 AC 544 ms
16,000 KB
testcase_11 AC 579 ms
16,000 KB
testcase_12 AC 530 ms
16,000 KB
testcase_13 AC 542 ms
16,000 KB
testcase_14 AC 551 ms
16,128 KB
testcase_15 AC 546 ms
16,000 KB
testcase_16 AC 538 ms
16,000 KB
testcase_17 AC 637 ms
16,128 KB
testcase_18 AC 640 ms
16,000 KB
testcase_19 AC 645 ms
16,000 KB
testcase_20 AC 639 ms
16,000 KB
testcase_21 AC 642 ms
16,000 KB
testcase_22 AC 654 ms
16,000 KB
testcase_23 AC 649 ms
16,000 KB
testcase_24 AC 651 ms
16,128 KB
testcase_25 AC 626 ms
16,000 KB
testcase_26 AC 641 ms
16,000 KB
testcase_27 AC 612 ms
16,000 KB
testcase_28 AC 620 ms
16,128 KB
testcase_29 AC 619 ms
16,000 KB
testcase_30 AC 614 ms
16,000 KB
testcase_31 AC 619 ms
16,000 KB
testcase_32 AC 581 ms
14,336 KB
testcase_33 AC 279 ms
9,600 KB
testcase_34 AC 265 ms
9,344 KB
testcase_35 AC 6 ms
5,376 KB
testcase_36 AC 562 ms
14,592 KB
testcase_37 AC 310 ms
9,984 KB
testcase_38 AC 274 ms
9,600 KB
testcase_39 AC 394 ms
11,904 KB
testcase_40 AC 216 ms
8,448 KB
testcase_41 AC 426 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;
int N,P[2<<17];
long S[2<<17];
int inv[2<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)
	{
		cin>>P[i];
		inv[P[i]-1]=i;
		S[i+1]=S[i]+P[i];
	}
	set<int>st({-1,N});
	for(int i=0;i<N;i++)
	{
		long A;cin>>A;
		int k=inv[i];
		auto it=st.insert(k).first;
		int R=*++it,L=*----it;
		long ans=0;
		if(k-L<R-k)
		{
			for(int x=L+1;x<=k;x++)
			{
				int l=k,r=R+1;
				while(r-l>1)
				{
					int mid=(l+r)/2;
					if(S[mid]-S[x]<=A)l=mid;
					else r=mid;
				}
				ans+=l-k;
			}
		}
		else
		{
			for(int y=k;y<R;y++)
			{
				int l=L-1,r=k;
				while(r-l>1)
				{
					int mid=(l+r)/2;
					if(S[y+1]-S[mid+1]<=A)r=mid;
					else l=mid;
				}
				ans+=k-r;
			}
		}
		cout<<ans<<endl;
	}
}
0