結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 543 ms
16,000 KB
testcase_04 AC 530 ms
16,000 KB
testcase_05 AC 523 ms
16,000 KB
testcase_06 AC 589 ms
16,000 KB
testcase_07 AC 578 ms
16,000 KB
testcase_08 AC 584 ms
16,000 KB
testcase_09 AC 581 ms
16,128 KB
testcase_10 AC 593 ms
16,000 KB
testcase_11 AC 601 ms
16,000 KB
testcase_12 AC 536 ms
16,000 KB
testcase_13 AC 559 ms
16,000 KB
testcase_14 AC 568 ms
16,000 KB
testcase_15 AC 557 ms
16,128 KB
testcase_16 AC 554 ms
16,000 KB
testcase_17 AC 690 ms
16,000 KB
testcase_18 AC 678 ms
16,000 KB
testcase_19 AC 679 ms
16,000 KB
testcase_20 AC 683 ms
15,872 KB
testcase_21 AC 679 ms
16,000 KB
testcase_22 AC 701 ms
16,128 KB
testcase_23 AC 682 ms
15,872 KB
testcase_24 AC 695 ms
16,128 KB
testcase_25 AC 696 ms
16,128 KB
testcase_26 AC 681 ms
16,000 KB
testcase_27 AC 665 ms
16,128 KB
testcase_28 AC 676 ms
16,000 KB
testcase_29 AC 672 ms
16,000 KB
testcase_30 AC 670 ms
16,000 KB
testcase_31 AC 667 ms
16,128 KB
testcase_32 AC 591 ms
14,336 KB
testcase_33 AC 305 ms
9,600 KB
testcase_34 AC 286 ms
9,216 KB
testcase_35 AC 7 ms
5,376 KB
testcase_36 AC 603 ms
14,720 KB
testcase_37 AC 326 ms
9,984 KB
testcase_38 AC 298 ms
9,600 KB
testcase_39 AC 432 ms
11,776 KB
testcase_40 AC 232 ms
8,320 KB
testcase_41 AC 448 ms
12,032 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.lower_bound(k);
		int R=*it,L=*--it;
		st.insert(k);
		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