結果
問題 | No.1675 Strange Minimum Query |
ユーザー | norikame |
提出日時 | 2021-09-10 22:28:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 350 ms / 2,000 ms |
コード長 | 1,409 bytes |
コンパイル時間 | 4,613 ms |
コンパイル使用メモリ | 265,724 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-06-12 01:16:08 |
合計ジャッジ時間 | 14,514 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 240 ms
6,016 KB |
testcase_04 | AC | 224 ms
8,384 KB |
testcase_05 | AC | 28 ms
6,940 KB |
testcase_06 | AC | 289 ms
6,400 KB |
testcase_07 | AC | 316 ms
8,960 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 135 ms
10,900 KB |
testcase_11 | AC | 35 ms
10,116 KB |
testcase_12 | AC | 141 ms
11,168 KB |
testcase_13 | AC | 264 ms
12,672 KB |
testcase_14 | AC | 313 ms
12,800 KB |
testcase_15 | AC | 280 ms
12,668 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 49 ms
5,632 KB |
testcase_18 | AC | 70 ms
5,576 KB |
testcase_19 | AC | 94 ms
10,660 KB |
testcase_20 | AC | 226 ms
11,712 KB |
testcase_21 | AC | 206 ms
11,528 KB |
testcase_22 | AC | 253 ms
12,140 KB |
testcase_23 | AC | 205 ms
6,936 KB |
testcase_24 | AC | 186 ms
8,276 KB |
testcase_25 | AC | 138 ms
6,104 KB |
testcase_26 | AC | 65 ms
7,256 KB |
testcase_27 | AC | 173 ms
11,340 KB |
testcase_28 | AC | 92 ms
10,480 KB |
testcase_29 | AC | 63 ms
10,528 KB |
testcase_30 | AC | 65 ms
7,224 KB |
testcase_31 | AC | 270 ms
8,956 KB |
testcase_32 | AC | 337 ms
12,672 KB |
testcase_33 | AC | 327 ms
12,672 KB |
testcase_34 | AC | 350 ms
12,672 KB |
testcase_35 | AC | 334 ms
12,792 KB |
testcase_36 | AC | 331 ms
12,676 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; #define rep(i, n) for (int i=0; i<(int)(n); ++(i)) #define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i)) #define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i)) #define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i)) #define all(x) (x).begin(), (x).end() const int INF = (int)(2e9); int op(int l, int r) { return max(l, r); } int e() { return 1; } int mapping(int f, int r) { return max(f, r); } int composition(int f, int g) { return max(f, g); } int id() { return 1; } int op2(int l, int r) { return min(l, r); } int e2() { return INF; } int mapping2(int f, int r) { return min(f, r); } int composition2(int f, int g) { return min(f, g); } int id2() { return INF; } int main() { int n, q; cin >> n >> q; vector<int> l(q), r(q), b(q); rep(i, q) { cin >> l[i] >> r[i] >> b[i]; l[i]--; } lazy_segtree<int, op, e, int, mapping, composition, id> lseg1(n+1); rep(i, q) lseg1.apply(l[i], r[i], b[i]); vector<int> res(n); rep(i, n) res[i] = lseg1.get(i); lazy_segtree<int, op2, e2, int, mapping2, composition2, id2> lseg2(res); bool ok = true; rep(i, q) if (lseg2.prod(l[i], r[i]) != b[i]) ok = false; if (ok) rep(i, n) printf("%d%c", res[i], (i<n-1?' ':'\n')); else cout << -1 << endl; return 0; }