結果
問題 | No.1675 Strange Minimum Query |
ユーザー | hiro71687k |
提出日時 | 2023-04-07 15:41:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,453 bytes |
コンパイル時間 | 4,356 ms |
コンパイル使用メモリ | 272,268 KB |
実行使用メモリ | 22,180 KB |
最終ジャッジ日時 | 2024-10-02 18:36:31 |
合計ジャッジ時間 | 13,397 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 221 ms
12,156 KB |
testcase_04 | AC | 188 ms
13,440 KB |
testcase_05 | AC | 17 ms
7,808 KB |
testcase_06 | AC | 257 ms
13,616 KB |
testcase_07 | AC | 271 ms
16,316 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll=long long; using ld=long double; using S = long long; using F = long long; ll inf=1000000000; const S INF = inf; const F ID = inf; S op(S a, S b){ return std::min(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; } ld pie=3.141592653589793; ll mod=1000000007; int main(){ ll n,q; cin >> n >> q; vector<ll>l(q),r(q),b(q); vector<pair<ll,pair<ll,ll>>>p(q); for (ll i = 0; i < q; i++) { cin >> l[i] >> r[i] >> b[i]; l[i]--; p[i]={b[i],{l[i],r[i]}}; } sort(p.begin(),p.end()); vector<ll>v(n,inf); atcoder::lazy_segtree<S, op, e, F, mapping, composition, id> seg(v); for (ll i = 0; i < p.size(); i++) { seg.apply(p[i].second.first,p[i].second.second,p[i].first); } bool ok=true; for (ll i = 0; i < p.size(); i++) { ll x=seg.prod(p[i].second.first,p[i].second.second); if (x!=p[i].first) { ok=false; break; } } if (ok) { vector<ll>a(n); for (ll i = 0; i < n; i++) { a[i]=seg.get(i); } for (ll i = 0; i < n; i++) { cout << a[i] << ' '; } cout << endl; }else{ cout << -1 << endl; } }