結果
問題 | No.1734 Decreasing Elements |
ユーザー | milanis48663220 |
提出日時 | 2021-11-05 22:50:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,439 bytes |
コンパイル時間 | 1,678 ms |
コンパイル使用メモリ | 136,552 KB |
実行使用メモリ | 10,816 KB |
最終ジャッジ日時 | 2024-11-06 13:56:01 |
合計ジャッジ時間 | 4,876 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
7,040 KB |
testcase_01 | AC | 6 ms
7,040 KB |
testcase_02 | AC | 5 ms
7,040 KB |
testcase_03 | AC | 5 ms
7,040 KB |
testcase_04 | AC | 5 ms
7,040 KB |
testcase_05 | AC | 5 ms
6,912 KB |
testcase_06 | AC | 6 ms
7,040 KB |
testcase_07 | AC | 83 ms
9,996 KB |
testcase_08 | AC | 84 ms
9,332 KB |
testcase_09 | AC | 85 ms
9,436 KB |
testcase_10 | AC | 85 ms
9,832 KB |
testcase_11 | AC | 97 ms
10,204 KB |
testcase_12 | AC | 64 ms
8,844 KB |
testcase_13 | AC | 93 ms
9,444 KB |
testcase_14 | WA | - |
testcase_15 | AC | 108 ms
9,968 KB |
testcase_16 | WA | - |
testcase_17 | AC | 119 ms
10,512 KB |
testcase_18 | AC | 122 ms
10,260 KB |
testcase_19 | AC | 138 ms
10,000 KB |
testcase_20 | WA | - |
testcase_21 | AC | 103 ms
10,252 KB |
testcase_22 | AC | 114 ms
10,756 KB |
testcase_23 | WA | - |
testcase_24 | AC | 135 ms
10,000 KB |
testcase_25 | WA | - |
testcase_26 | AC | 122 ms
10,384 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <random> #include <atcoder/lazysegtree> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } vector<int> gen_array(int n, int l, int r){ int d = r-l; random_device rnd; mt19937 mt(rnd()); vector<int> ans(n); int x = mt(); for(int i = 0; i < n; i++) ans[i] = l+(mt()%d); return ans; } const int MX = 200000; using P = pair<int, int>; int e() { return 0; } int add(int l, int r) { return l+r; } int id() { return 0; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; vector<int> a(n); for(int i = 0; i < n; i++) cin >> a[i]; vector<int> v(MX+1); for(int i = 0; i <= MX; i++) v[i] = i; atcoder::lazy_segtree<int, add, e, int, add, add, id> sgt(v); priority_queue<P> que; que.push(P(MX, 0)); int ans = 0; for(int i = 0; i < n; i++){ int x = sgt.get(a[i]); if(x == 0) continue; ans++; vector<P> p; while(!que.empty() && que.top().first >= x+1){ p.push_back(que.top()); que.pop(); } // debug_value(p.size()); for(auto [len, l]: p){ que.push(P(x, l)); que.push(P(len-x, l+x)); sgt.apply(l+x, l+len, -x); } } cout << ans << endl; }