結果
問題 | No.1051 PQ Permutation |
ユーザー | 沙耶花 |
提出日時 | 2020-05-08 22:23:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 260 ms / 2,000 ms |
コード長 | 1,120 bytes |
コンパイル時間 | 2,078 ms |
コンパイル使用メモリ | 209,392 KB |
実行使用メモリ | 14,716 KB |
最終ジャッジ日時 | 2024-07-05 19:42:58 |
合計ジャッジ時間 | 6,428 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 149 ms
14,436 KB |
testcase_16 | AC | 145 ms
13,848 KB |
testcase_17 | AC | 41 ms
5,376 KB |
testcase_18 | AC | 43 ms
5,376 KB |
testcase_19 | AC | 43 ms
5,376 KB |
testcase_20 | AC | 107 ms
10,908 KB |
testcase_21 | AC | 103 ms
11,308 KB |
testcase_22 | AC | 42 ms
5,376 KB |
testcase_23 | AC | 99 ms
10,776 KB |
testcase_24 | AC | 96 ms
10,856 KB |
testcase_25 | AC | 8 ms
5,376 KB |
testcase_26 | AC | 4 ms
5,376 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 7 ms
5,376 KB |
testcase_29 | AC | 3 ms
5,376 KB |
testcase_30 | AC | 9 ms
5,376 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 9 ms
5,376 KB |
testcase_33 | AC | 3 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 68 ms
9,088 KB |
testcase_36 | AC | 72 ms
9,088 KB |
testcase_37 | AC | 126 ms
13,440 KB |
testcase_38 | AC | 145 ms
14,716 KB |
testcase_39 | AC | 117 ms
13,440 KB |
testcase_40 | AC | 86 ms
10,028 KB |
testcase_41 | AC | 79 ms
10,028 KB |
testcase_42 | AC | 1 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
testcase_45 | AC | 2 ms
5,376 KB |
testcase_46 | AC | 2 ms
5,376 KB |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | AC | 260 ms
13,440 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:29:23: warning: 'q' may be used uninitialized [-Wmaybe-uninitialized] 29 | if(p>q&&(!S.count(P)||!S.count(Q)))continue; | ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:13:15: note: 'q' was declared here 13 | int p,q; | ^ main.cpp:29:23: warning: 'p' may be used uninitialized [-Wmaybe-uninitialized] 29 | if(p>q&&(!S.count(P)||!S.count(Q)))continue; | ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:13:13: note: 'p' was declared here 13 | int p,q; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 1000000 int main(){ int N,P,Q; cin>>N>>P>>Q; int p,q; vector<int> A(N); for(int i=0;i<N;i++){ scanf("%d",&A[i]); if(A[i]==P)p = i; if(A[i]==Q)q = i; } set<int> S; vector<int> ans; for(int i=N-1;i>=0;i--){ S.insert(A[i]); auto it= S.upper_bound(A[i]); L: if(S.count(P)&&!S.count(Q))continue; if(p>q&&(!S.count(P)||!S.count(Q)))continue; if(it==S.end())continue; if(S.count(P)&&(*it)==Q){ it++; goto L; } for(int j=0;j<i;j++)ans.push_back(A[j]); ans.push_back(*it); S.erase(it); int t = -1; bool f = false; if(S.count(P))f=true; for(auto a:S){ if(a==P){ ans.push_back(a); if(t!=-1)ans.push_back(t); f=false; } else if(a==Q){ if(f){ t = Q; } else{ ans.push_back(a); } } else{ ans.push_back(a); } } break; } if(ans.size()==0)cout<<-1<<endl; else{ for(int i=0;i<ans.size();i++){ if(i!=0)cout<<' '; cout<<ans[i]; } cout<<endl; } return 0; }