結果
問題 | No.318 学学学学学 |
ユーザー | yano2xy |
提出日時 | 2024-06-11 15:36:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 183 ms / 2,000 ms |
コード長 | 2,453 bytes |
コンパイル時間 | 4,192 ms |
コンパイル使用メモリ | 282,476 KB |
実行使用メモリ | 22,772 KB |
最終ジャッジ日時 | 2024-06-11 15:37:07 |
合計ジャッジ時間 | 8,354 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
5,248 KB |
testcase_01 | AC | 23 ms
7,040 KB |
testcase_02 | AC | 27 ms
7,424 KB |
testcase_03 | AC | 19 ms
5,888 KB |
testcase_04 | AC | 22 ms
7,040 KB |
testcase_05 | AC | 183 ms
22,768 KB |
testcase_06 | AC | 121 ms
18,032 KB |
testcase_07 | AC | 102 ms
16,500 KB |
testcase_08 | AC | 91 ms
15,220 KB |
testcase_09 | AC | 85 ms
14,324 KB |
testcase_10 | AC | 73 ms
13,556 KB |
testcase_11 | AC | 159 ms
22,772 KB |
testcase_12 | AC | 108 ms
18,032 KB |
testcase_13 | AC | 115 ms
16,496 KB |
testcase_14 | AC | 81 ms
15,220 KB |
testcase_15 | AC | 65 ms
14,452 KB |
testcase_16 | AC | 46 ms
13,424 KB |
testcase_17 | AC | 87 ms
17,988 KB |
testcase_18 | AC | 79 ms
18,036 KB |
testcase_19 | AC | 87 ms
18,032 KB |
testcase_20 | AC | 47 ms
13,432 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> // clang-format off #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n) for(int i=0;i<(n);i++) template<class T,class S>inline bool chmax(T &a,const S &b) {return (a<b? a=b,1:0);} template<class T,class S>inline bool chmin(T &a,const S &b) {return (a>b? a=b,1:0);} template<class T,class S>inline T floor(T a,S b) {if(b<0)a=-a,b=-b;return a>=0?a/b:(a+1)/b-1;} template<class T,class S>inline T ceil(T a,S b) {if(b<0)a=-a,b=-b;return a>0?(a-1)/b+1:a/b;} constexpr int dx[8]={1,0,-1,0,1,-1,1,-1},dy[8]={0,1,0,-1,1,-1,-1,1}; using ll = long long; // clang-format on #ifdef LOCAL #include <util/debug_print.hpp> #else #define debug(...) static_cast<void>(0) #endif // 0始まりの座標へと圧縮する template <typename T = long long> struct CC { bool initialized; vector<T> xs; CC() : initialized(false) {} void add(T x) { xs.push_back(x); } void init() { sort(xs.begin(), xs.end()); xs.erase(unique(xs.begin(), xs.end()), xs.end()); initialized = true; } int operator()(T x) { if (!initialized) init(); return upper_bound(xs.begin(), xs.end(), x) - xs.begin() - 1; } T decode(int i) { if (!initialized) init(); return xs[i]; } int size() { if (!initialized) init(); return xs.size(); } }; // // 区間更新 & 区間最大値取得 // using S = ll; using F = ll; const S INF = 8e18; const F ID = 8e18; S op(S a, S b) { return max(a, b); } S e() { return -INF; } S mapping(F f, S x) { return (f == ID ? x : f); } F composition(F f, F g) { return (f == ID ? g : f); } F id() { return ID; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<ll> A(n); CC cc; rep(i, n) cin >> A[i], cc.add(A[i]); vector<ll> C(n); rep(i, n) C[i] = cc(A[i]); map<int, set<int>> mp; rep(i, n) mp[C[i]].insert(i); debug(mp); lazy_segtree<S, op, e, F, mapping, composition, id> seg(C); rep(x, cc.size()) { if (mp.count(x) == 0) continue; int l = 1001001001; int r = -1; for (auto i : mp[x]) { // if (seg.get(i) != x) continue; chmin(l, i), chmax(r, i); } if (r == -1) continue; seg.apply(l, r + 1, x); } rep(i, C.size()) cout << cc.decode(seg.get(i)) << ' '; cout << endl; return 0; }