結果
問題 | No.429 CupShuffle |
ユーザー | YamaKasa |
提出日時 | 2018-09-20 16:57:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 969 ms / 2,000 ms |
コード長 | 1,028 bytes |
コンパイル時間 | 2,858 ms |
コンパイル使用メモリ | 82,644 KB |
実行使用メモリ | 71,496 KB |
最終ジャッジ日時 | 2024-07-18 08:35:22 |
合計ジャッジ時間 | 9,114 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 216 ms
58,200 KB |
testcase_01 | AC | 144 ms
54,964 KB |
testcase_02 | AC | 150 ms
55,048 KB |
testcase_03 | AC | 135 ms
54,344 KB |
testcase_04 | AC | 214 ms
58,704 KB |
testcase_05 | AC | 147 ms
54,984 KB |
testcase_06 | AC | 204 ms
57,216 KB |
testcase_07 | AC | 217 ms
58,376 KB |
testcase_08 | AC | 150 ms
54,956 KB |
testcase_09 | AC | 214 ms
57,936 KB |
testcase_10 | AC | 427 ms
59,416 KB |
testcase_11 | AC | 935 ms
67,224 KB |
testcase_12 | AC | 860 ms
71,496 KB |
testcase_13 | AC | 928 ms
71,244 KB |
testcase_14 | AC | 969 ms
71,372 KB |
testcase_15 | AC | 131 ms
54,584 KB |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int K = scan.nextInt(); int X = scan.nextInt() - 1; int[]A = new int[K]; int[]B = new int[K]; for(int i = 0; i < K; i++) { if(i == X) { scan.next(); scan.next(); A[i] = 0; B[i] = 0; }else { A[i] = scan.nextInt() - 1; B[i] = scan.nextInt() - 1; } } int[]C = new int[N]; int[]C1 = new int[N]; for(int i = 0; i < N; i++) { C[i] = scan.nextInt(); C1[i] = i + 1; } scan.close(); for(int i = 0; i < X; i++) { swap(C1, A[i], B[i]); } for(int i = K - 1; i > X; i--) { swap(C, A[i], B[i]); } ArrayList<Integer> list = new ArrayList<Integer>(); for(int i = 0; i < N; i++) { if(C[i] != C1[i]) { list.add(i + 1); } } System.out.println(list.get(0) + " " + list.get(1)); } static void swap(int[]A, int i, int j) { int t = A[j]; A[j] = A[i]; A[i] = t; } }