結果

問題 No.1734 Decreasing Elements
ユーザー platinumplatinum
提出日時 2021-08-18 16:30:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 361 ms / 3,000 ms
コード長 917 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 215,856 KB
実行使用メモリ 27,740 KB
最終ジャッジ日時 2024-11-06 11:46:10
合計ジャッジ時間 8,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 153 ms
22,864 KB
testcase_08 AC 162 ms
23,528 KB
testcase_09 AC 88 ms
14,740 KB
testcase_10 AC 96 ms
16,008 KB
testcase_11 AC 190 ms
22,812 KB
testcase_12 AC 85 ms
10,696 KB
testcase_13 AC 131 ms
14,148 KB
testcase_14 AC 330 ms
25,936 KB
testcase_15 AC 199 ms
18,008 KB
testcase_16 AC 298 ms
21,680 KB
testcase_17 AC 355 ms
26,036 KB
testcase_18 AC 361 ms
26,040 KB
testcase_19 AC 172 ms
15,072 KB
testcase_20 AC 177 ms
15,076 KB
testcase_21 AC 277 ms
24,224 KB
testcase_22 AC 308 ms
26,348 KB
testcase_23 AC 283 ms
26,012 KB
testcase_24 AC 239 ms
21,480 KB
testcase_25 AC 346 ms
27,740 KB
testcase_26 AC 325 ms
27,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)

using namespace std;
using LL = long long;
using P = pair<int,int>;
using vv = vector<vector<int>>;
const int INF = (int)1e9;
const LL LINF = (LL)1e18;
const int A_Max = (int)4e5;

int main(){
	int N;
	cin >> N;
	assert(1 <= N and N <= 200000);
	vector<int> A(N);
	rep(i,N) cin >> A[i];
	rep(i,N) assert(0 <= A[i] and A[i] <= 200000);
	priority_queue<P> q;
	set<int> st;
	st.insert(0);
	q.push(P(A_Max, 0));
	int ans = N;
	rep(i,N){
		auto itr = st.upper_bound(A[i]);
		itr--;
		int a = A[i] - *itr;
		if(a == 0){
			ans--;
			continue;
		}
		int siz = q.size();
		vector<P> res;
		rep(j,siz){
			P p = q.top();
			if(p.first <= a) break;
			q.pop();
			res.emplace_back(a, p.second);
			res.emplace_back(p.first - a, p.second + a);
			st.insert(p.second + a);
		}
		rep(j,res.size()) q.push(res[j]);
	}
	cout << ans << endl;

	return 0;
}
0