結果
問題 | No.1675 Strange Minimum Query |
ユーザー | otoshigo |
提出日時 | 2021-09-17 17:41:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 399 ms / 2,000 ms |
コード長 | 1,637 bytes |
コンパイル時間 | 3,997 ms |
コンパイル使用メモリ | 272,136 KB |
実行使用メモリ | 17,368 KB |
最終ジャッジ日時 | 2024-06-29 17:29:38 |
合計ジャッジ時間 | 14,913 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 239 ms
14,040 KB |
testcase_04 | AC | 209 ms
15,192 KB |
testcase_05 | AC | 16 ms
5,456 KB |
testcase_06 | AC | 279 ms
14,548 KB |
testcase_07 | AC | 288 ms
15,828 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 138 ms
11,604 KB |
testcase_11 | AC | 33 ms
6,784 KB |
testcase_12 | AC | 153 ms
11,476 KB |
testcase_13 | AC | 283 ms
17,368 KB |
testcase_14 | AC | 331 ms
17,240 KB |
testcase_15 | AC | 291 ms
17,364 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 53 ms
5,588 KB |
testcase_18 | AC | 79 ms
6,556 KB |
testcase_19 | AC | 106 ms
8,908 KB |
testcase_20 | AC | 250 ms
13,396 KB |
testcase_21 | AC | 243 ms
11,860 KB |
testcase_22 | AC | 286 ms
16,728 KB |
testcase_23 | AC | 238 ms
14,292 KB |
testcase_24 | AC | 206 ms
10,712 KB |
testcase_25 | AC | 153 ms
9,172 KB |
testcase_26 | AC | 72 ms
7,512 KB |
testcase_27 | AC | 190 ms
11,600 KB |
testcase_28 | AC | 99 ms
9,036 KB |
testcase_29 | AC | 70 ms
7,760 KB |
testcase_30 | AC | 71 ms
6,616 KB |
testcase_31 | AC | 313 ms
15,192 KB |
testcase_32 | AC | 399 ms
17,368 KB |
testcase_33 | AC | 399 ms
17,244 KB |
testcase_34 | AC | 388 ms
17,240 KB |
testcase_35 | AC | 380 ms
17,368 KB |
testcase_36 | AC | 380 ms
17,368 KB |
ソースコード
//#define _GLIBCXX_DEBUG #include <bits/stdc++.h> #include <iostream> #include <algorithm> #include <atcoder/all> using namespace std; using namespace atcoder; using mint = modint1000000007; using ll = long long; using pii = pair<int,int>; using pll = pair<ll,ll>; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using vb = vector<bool>; using vvb = vector<vb>; using vm = vector<mint>; using vvm = vector<vm>; using vpi = vector<pii>; using vvpi = vector<vpi>; using vpl = vector<pll>; using vvpl = vector<vpl>; const int inf = 1 << 30; const ll INF = 1LL << 60; #define rep(i,m,n) for (int i = m; i < (int)(n); i++) #define rrep(i,m,n) for (int i = m; i > (int)(n); i--) using S = int; using F = int; S op(S a, S b){ return min(a, b); } S e(){ return inf; } S mapping(F f, S x){ return (f == inf ? x : f); } F composition(F f, F g){ return (f == inf ? g : f);} F id(){ return inf; } int main(){ int n,q; cin >> n >> q; lazy_segtree<S, op, e, F, mapping, composition, id> seg(n); vvi vec; rep(_,0,q){ int l,r,b; cin >> l >> r >> b; --l; vec.push_back({b,l,r}); } sort(vec.begin(),vec.end()); rep(i,0,q){ int b = vec[i][0],l = vec[i][1],r = vec[i][2]; seg.apply(l,r,b); } rep(i,0,q){ int b = vec[i][0],l = vec[i][1],r = vec[i][2]; if (seg.prod(l,r) != b){ cout << -1 << endl; return 0; } } rep(i,0,n){ if (seg.get(i) == inf) cout << 1; else cout << seg.get(i); if (i != n-1){ cout << " "; } } cout << endl; }