結果

問題 No.1051 PQ Permutation
ユーザー kriiikriii
提出日時 2020-05-10 07:34:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 729 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 46,260 KB
実行使用メモリ 10,656 KB
最終ジャッジ日時 2024-07-07 02:14:21
合計ジャッジ時間 6,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,524 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,948 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 51 ms
6,944 KB
testcase_16 AC 49 ms
6,940 KB
testcase_17 AC 38 ms
6,940 KB
testcase_18 AC 39 ms
6,944 KB
testcase_19 AC 39 ms
6,940 KB
testcase_20 AC 46 ms
6,940 KB
testcase_21 AC 46 ms
6,940 KB
testcase_22 AC 39 ms
6,940 KB
testcase_23 AC 46 ms
6,944 KB
testcase_24 AC 45 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 6 ms
6,944 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 5 ms
6,944 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 4 ms
6,940 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 20 ms
6,944 KB
testcase_36 AC 20 ms
6,944 KB
testcase_37 AC 22 ms
6,944 KB
testcase_38 AC 39 ms
6,944 KB
testcase_39 AC 22 ms
6,944 KB
testcase_40 AC 37 ms
6,940 KB
testcase_41 AC 40 ms
6,940 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 1 ms
6,944 KB
testcase_44 AC 1 ms
6,944 KB
testcase_45 AC 1 ms
6,940 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 1 ms
6,940 KB
testcase_48 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:12:16: warning: 'q' may be used uninitialized [-Wmaybe-uninitialized]
   12 |         int p, q;
      |                ^
main.cpp:26:34: warning: 'p' may be used uninitialized [-Wmaybe-uninitialized]
   26 |                         for (int i = p + 1; i < N; i++) printf ("%d ", A[i]);
      |                                  ^
main.cpp:12:13: note: 'p' was declared here
   12 |         int p, q;
      |             ^

ソースコード

diff #

#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]);

	int p, q;
	while (next_permutation(A, A + N)){
		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;
		}
		sort(A + q + 1, A + N);
		reverse(A + q + 1, A + N);
	}

	puts("-1");
	return 0;
}
0