結果
問題 | No.1675 Strange Minimum Query |
ユーザー | hiro71687k |
提出日時 | 2023-04-07 15:39:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,461 bytes |
コンパイル時間 | 4,543 ms |
コンパイル使用メモリ | 271,056 KB |
実行使用メモリ | 22,016 KB |
最終ジャッジ日時 | 2024-10-02 18:35:55 |
合計ジャッジ時間 | 16,410 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 235 ms
12,080 KB |
testcase_04 | AC | 206 ms
13,440 KB |
testcase_05 | AC | 19 ms
7,808 KB |
testcase_06 | AC | 277 ms
13,396 KB |
testcase_07 | AC | 291 ms
16,128 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; const S INF = 8e18; const F ID = 8e18; 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 inf=144499999999994; 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; } }