結果

問題 No.1734 Decreasing Elements
ユーザー kotatsugamekotatsugame
提出日時 2021-11-05 22:43:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 3,000 ms
コード長 657 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 84,876 KB
実行使用メモリ 14,760 KB
最終ジャッジ日時 2024-11-06 13:43:58
合計ジャッジ時間 5,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 78 ms
14,436 KB
testcase_08 AC 82 ms
14,312 KB
testcase_09 AC 79 ms
14,500 KB
testcase_10 AC 80 ms
14,760 KB
testcase_11 AC 137 ms
14,384 KB
testcase_12 AC 86 ms
10,404 KB
testcase_13 AC 139 ms
13,696 KB
testcase_14 AC 252 ms
14,532 KB
testcase_15 AC 179 ms
14,500 KB
testcase_16 AC 257 ms
14,464 KB
testcase_17 AC 248 ms
14,424 KB
testcase_18 AC 260 ms
14,464 KB
testcase_19 AC 164 ms
14,036 KB
testcase_20 AC 165 ms
14,160 KB
testcase_21 AC 163 ms
12,372 KB
testcase_22 AC 175 ms
13,900 KB
testcase_23 AC 171 ms
14,164 KB
testcase_24 AC 183 ms
14,164 KB
testcase_25 AC 193 ms
14,508 KB
testcase_26 AC 188 ms
14,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<set>
#include<queue>
#include<vector>
using namespace std;
int N;
main()
{
	cin>>N;
	set<int>S;
	S.insert(0);
	S.insert(2e5+1);
	priority_queue<pair<int,int> >P;
	P.push(make_pair(2e5+1,0));
	int ans=0;
	vector<pair<int,int> >upd;
	for(int i=0;i<N;i++)
	{
		int A;cin>>A;
		auto it=S.upper_bound(A);
		it--;
		if(*it==A)continue;
		int d=A-*it;
		{
			upd.clear();
			while(P.top().first>d)
			{
				pair<int,int>p=P.top();
				P.pop();
				P.push(make_pair(d,p.second));
				upd.push_back(make_pair(p.first-d,p.second+d));
				S.insert(p.second+d);
			}
			for(pair<int,int>&p:upd)P.push(p);
		}
		ans++;
	}
	cout<<ans<<endl;
}
0