結果
問題 | No.2667 Constrained Permutation |
ユーザー | Diana773 |
提出日時 | 2024-03-08 23:02:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,024 bytes |
コンパイル時間 | 1,854 ms |
コンパイル使用メモリ | 171,596 KB |
実行使用メモリ | 7,516 KB |
最終ジャッジ日時 | 2024-09-29 20:32:18 |
合計ジャッジ時間 | 5,505 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
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 | AC | 49 ms
6,880 KB |
testcase_29 | AC | 48 ms
6,824 KB |
testcase_30 | AC | 54 ms
6,820 KB |
testcase_31 | AC | 34 ms
6,820 KB |
testcase_32 | AC | 9 ms
6,816 KB |
testcase_33 | AC | 64 ms
7,140 KB |
testcase_34 | AC | 37 ms
6,816 KB |
testcase_35 | AC | 42 ms
6,820 KB |
testcase_36 | AC | 40 ms
6,816 KB |
testcase_37 | AC | 45 ms
6,816 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 37 ms
6,816 KB |
testcase_41 | AC | 59 ms
7,132 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 32 ms
6,816 KB |
testcase_45 | AC | 3 ms
6,820 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; pair<int,int> a[200010]; pair<int,int> b[200010]; int p[200010]; int _; int n,l,r,m,tt,ll,rr; int main() { ios::sync_with_stdio(false); cin.tie(0); cin>>n; for (int i=1; i<=n; i++) { cin>>a[i].first>>a[i].second; b[i].first=-a[i].second; b[i].second=-a[i].first; } sort(a+1,a+1+n); for (int i=1; i<=n; i++) { p[i]=max(p[i-1]+1,a[i].first); //cout<<i<<" "<<p[i]<<endl; //cout<<i<<" "<<a[i].first<<" "<<a[i].second<<endl; } for (int i=n-1; i>=1; i--) { p[i]=p[i+1]-1; } ll=p[1]; int fl=1; for (int i=1; i<=n; i++) { if (!(p[i]>=a[i].first && p[i]<=a[i].second)) fl=0; } if (fl==0) { cout<<0; return 0; } sort(b+1,b+1+n); for (int i=1; i<=n; i++) { a[i].first=-b[i].second; a[i].second=-b[i].first; //cout<<i<<" "<<a[i].first<<" "<<a[i].second<<endl; } p[0]=2000000000; for (int i=1; i<=n; i++) { p[i]=min(p[i-1]-1,a[i].second); //cout<<i<<" "<<p[i]<<endl; } rr=p[n]; cout<<rr-ll+1<<'\n'; return 0; }