結果
問題 | No.1675 Strange Minimum Query |
ユーザー | inksamurai |
提出日時 | 2021-09-10 21:41:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,250 bytes |
コンパイル時間 | 4,189 ms |
コンパイル使用メモリ | 271,196 KB |
実行使用メモリ | 16,364 KB |
最終ジャッジ日時 | 2024-06-11 23:03:18 |
合計ジャッジ時間 | 12,466 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 60 ms
6,944 KB |
testcase_04 | AC | 54 ms
8,932 KB |
testcase_05 | AC | 11 ms
7,528 KB |
testcase_06 | AC | 66 ms
7,296 KB |
testcase_07 | AC | 73 ms
9,188 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 53 ms
10,984 KB |
testcase_11 | AC | 24 ms
8,548 KB |
testcase_12 | AC | 61 ms
11,644 KB |
testcase_13 | AC | 98 ms
13,048 KB |
testcase_14 | AC | 108 ms
12,880 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,944 KB |
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> //eolibraries #define lnf 3999999999999999999 #define inf 999999999+1 #define fi first #define se second #define pb push_back #define all(c) (c).begin(),(c).end() #define sz(c) (int)(c).size() #define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end()); #define rep(i,n) for(int i=0;i<n;i++) #define drep(i,n) for(int i=n-1;i>=0;i--) #define crep(i,x,n) for(int i=x;i<n;i++) #define vec(...) vector<__VA_ARGS__> #define _3E0svGb ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0) //eodefine using namespace std; typedef long long ll; typedef long double ld; using pii=pair<int,int>; using tpii=pair<pii,int>; using vi=vec(int); const int mxn=12000; int op(int l,int r){ return min(l,r); } int e(){ return inf; } int main(){ _3E0svGb; int n,m; cin>>n>>m; atcoder::segtree<int,op,e> seg(n); rep(i,n) seg.set(i,inf); vec(vec(pii)) qry(n); rep(i,m){ int l,r,val; cin>>l>>r>>val; l--,r--; qry[r].pb({l,val}); } rep(i,n){ sort(all(qry[i])); for(auto p : qry[i]){ int val=p.se; if(seg.prod(p.fi,i+1)<val){ printf("-1\n"); exit(0); } seg.set(p.fi,val); } } rep(i,n){ cout<<seg.prod(i,i+1); if(i<n-1) cout<<" "; } cout<<"\n"; // return 0; }