結果
問題 | No.1051 PQ Permutation |
ユーザー | kriii |
提出日時 | 2020-05-10 08:25:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 942 bytes |
コンパイル時間 | 434 ms |
コンパイル使用メモリ | 46,464 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 03:28:45 |
合計ジャッジ時間 | 3,319 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 37 ms
6,944 KB |
testcase_18 | AC | 37 ms
6,944 KB |
testcase_19 | AC | 38 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 38 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 3 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | AC | 6 ms
6,944 KB |
testcase_29 | AC | 3 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,944 KB |
testcase_35 | AC | 20 ms
6,944 KB |
testcase_36 | WA | - |
testcase_37 | AC | 21 ms
6,940 KB |
testcase_38 | AC | 36 ms
6,940 KB |
testcase_39 | AC | 23 ms
6,944 KB |
testcase_40 | AC | 35 ms
6,944 KB |
testcase_41 | WA | - |
testcase_42 | AC | 2 ms
6,940 KB |
testcase_43 | AC | 2 ms
6,944 KB |
testcase_44 | AC | 2 ms
6,944 KB |
testcase_45 | AC | 2 ms
6,940 KB |
testcase_46 | AC | 2 ms
6,944 KB |
testcase_47 | AC | 1 ms
6,940 KB |
testcase_48 | AC | 23 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:13:24: warning: 'q' may be used uninitialized [-Wmaybe-uninitialized] 13 | int p, q; | ^ main.cpp:28:34: warning: 'p' may be used uninitialized [-Wmaybe-uninitialized] 28 | for (int i = p + 1; i < N; i++) printf ("%d ", A[i]); | ^ main.cpp:13:21: note: 'p' was declared here 13 | int p, q; | ^
ソースコード
#include <stdio.h> #include <algorithm> using namespace std; int N, P, Q, A[200200]; int main() { scanf ("%d %d %d", &N, &P, &Q); for (int i = 0; i < N; i++) scanf ("%d", &A[i]); while (next_permutation(A, A + N)){ int p, q; for (int i = 0; i < N; i++){ if (A[i] == P) p = i; if (A[i] == Q) q = i; } if (p < q){ for (int i = 0; i < N; i++) printf ("%d ", A[i]); return 0; } if (is_sorted(A + q, A + N)){ for (int i = 0; i < q; i++) printf ("%d ", A[i]); for (int i = q + 1; i < p; i++) printf ("%d ", A[i]); printf ("%d %d ", P, Q); for (int i = p + 1; i < N; i++) printf ("%d ", A[i]); return 0; } else{ int u = 0, w = Q - 1; for (int i = q + 1; i < N; i++) u = max(u, A[i]); for (; q >= 0; q--){ if (w < A[q]) w = A[q]; else if (u < A[q] && A[q] < Q) u = A[q]; else break; } sort(A + q + 1, A + N); reverse(A + q + 1, A + N); } } puts("-1"); return 0; }