結果
問題 | No.2543 Many Meetings |
ユーザー | maksim |
提出日時 | 2023-11-24 22:15:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 403 ms / 2,000 ms |
コード長 | 1,328 bytes |
コンパイル時間 | 2,171 ms |
コンパイル使用メモリ | 176,076 KB |
実行使用メモリ | 75,336 KB |
最終ジャッジ日時 | 2024-09-26 09:27:54 |
合計ジャッジ時間 | 13,249 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
68,992 KB |
testcase_01 | AC | 137 ms
68,992 KB |
testcase_02 | AC | 145 ms
68,992 KB |
testcase_03 | AC | 297 ms
75,336 KB |
testcase_04 | AC | 291 ms
75,272 KB |
testcase_05 | AC | 295 ms
75,328 KB |
testcase_06 | AC | 345 ms
75,204 KB |
testcase_07 | AC | 403 ms
75,332 KB |
testcase_08 | AC | 395 ms
75,204 KB |
testcase_09 | AC | 293 ms
75,328 KB |
testcase_10 | AC | 289 ms
75,332 KB |
testcase_11 | AC | 282 ms
75,304 KB |
testcase_12 | AC | 286 ms
75,328 KB |
testcase_13 | AC | 287 ms
74,052 KB |
testcase_14 | AC | 207 ms
71,876 KB |
testcase_15 | AC | 208 ms
71,876 KB |
testcase_16 | AC | 239 ms
73,152 KB |
testcase_17 | AC | 256 ms
73,796 KB |
testcase_18 | AC | 281 ms
74,180 KB |
testcase_19 | AC | 286 ms
73,800 KB |
testcase_20 | AC | 277 ms
73,924 KB |
testcase_21 | AC | 297 ms
74,688 KB |
testcase_22 | AC | 277 ms
73,664 KB |
testcase_23 | AC | 138 ms
69,120 KB |
testcase_24 | AC | 140 ms
69,120 KB |
testcase_25 | AC | 140 ms
68,992 KB |
testcase_26 | AC | 143 ms
68,992 KB |
testcase_27 | AC | 144 ms
68,992 KB |
testcase_28 | AC | 228 ms
73,544 KB |
testcase_29 | AC | 167 ms
70,592 KB |
testcase_30 | AC | 173 ms
70,600 KB |
testcase_31 | AC | 167 ms
70,340 KB |
testcase_32 | AC | 220 ms
73,412 KB |
testcase_33 | AC | 145 ms
69,120 KB |
testcase_34 | AC | 142 ms
68,992 KB |
testcase_35 | AC | 146 ms
68,992 KB |
testcase_36 | AC | 143 ms
69,120 KB |
testcase_37 | AC | 143 ms
68,992 KB |
testcase_38 | AC | 143 ms
68,992 KB |
testcase_39 | AC | 144 ms
68,992 KB |
testcase_40 | AC | 142 ms
68,992 KB |
testcase_41 | AC | 140 ms
68,992 KB |
testcase_42 | AC | 142 ms
68,992 KB |
コンパイルメッセージ
main.cpp: In function 'int32_t main()': main.cpp:18:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 18 | for(auto [l,r]:v) | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define app push_back const int maxn=4e5+5; int arr[maxn]; int u[maxn][20]; const int inf=1e18; int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); int n,k;cin>>n>>k; vector<pair<int,int> > v;vector<int> moms; for(int i=0;i<n;++i) {int l,r;cin>>l>>r;v.app({l,r});moms.app(l);moms.app(r);} sort(moms.begin(),moms.end());for(int i=0;i<v.size();++i) {v[i].first=lower_bound(moms.begin(),moms.end(),v[i].first)-moms.begin();v[i].second=lower_bound(moms.begin(),moms.end(),v[i].second)-moms.begin();} fill(arr,arr+maxn,inf); for(auto [l,r]:v) { arr[l]=min(arr[l],r); } for(int i=maxn-1;i>=1;--i) {arr[i-1]=min(arr[i-1],arr[i]);} for(int i=0;i<maxn;++i) u[i][0]=arr[i]; for(int j=1;j<20;++j) { for(int i=0;i<maxn;++i) { if(u[i][j-1]==inf) u[i][j]=inf; else u[i][j]=u[u[i][j-1]][j-1]; } } int res=inf; for(int i=0;i<maxn;++i) { int cur=i; for(int j=0;j<20;++j) { if(k & (1<<j)) { if(cur!=inf) cur=u[cur][j]; } } if(cur!=inf) res=min(res,moms[cur]-moms[i]); } cout<<(res==inf ? -1 : res); return 0; }