結果
問題 | No.1051 PQ Permutation |
ユーザー | QCFium |
提出日時 | 2020-05-08 21:51:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,047 bytes |
コンパイル時間 | 454 ms |
コンパイル使用メモリ | 46,520 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 19:33:14 |
合計ジャッジ時間 | 3,157 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 57 ms
5,376 KB |
testcase_16 | AC | 58 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 51 ms
5,376 KB |
testcase_21 | AC | 52 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 52 ms
5,376 KB |
testcase_24 | AC | 52 ms
5,376 KB |
testcase_25 | AC | 5 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 6 ms
5,376 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 6 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 23 ms
5,376 KB |
testcase_36 | AC | 24 ms
5,376 KB |
testcase_37 | AC | 24 ms
5,376 KB |
testcase_38 | AC | 46 ms
5,376 KB |
testcase_39 | AC | 25 ms
5,376 KB |
testcase_40 | WA | - |
testcase_41 | AC | 44 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
ソースコード
#include <stdio.h> #include <algorithm> int ri() { int n; scanf("%d", &n); return n; } int main() { int n = ri(); int l = ri() - 1; int r = ri() - 1; int a[n]; for (auto &i : a) i = ri() - 1; if (!std::next_permutation(a, a + n)) { puts("-1"); return 0; } int max[n]; max[n - 1] = a[n - 1]; for (int i = n; --i; ) max[i - 1] = std::max(max[i], a[i - 1]); int lpos = std::find(a, a + n, l) - a; int rpos = std::find(a, a + n, r) - a; if (lpos > rpos) { int i = rpos; while (i >= 0 && max[i] == a[i]) i--; if (i == -1) { puts("-1"); return 0; } int min = 1000000000, index = -1; for (int j = i + 1; j < n; j++) if (a[j] > a[i] && min > a[j]) min = a[j], index = j; std::swap(a[i], a[index]); std::sort(a + i + 1, a + n); bool l_found = false; bool r_bury = false; for (auto j : a) { if (j == l) { l_found = true; printf("%d ", l + 1); if (r_bury) printf("%d ", r + 1); } else if (j == r && !l_found) r_bury = true; else printf("%d ", j + 1); } puts(""); } return 0; }