結果

問題 No.326 あみだますたー
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-26 04:48:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 1,169 bytes
コンパイル時間 3,556 ms
コンパイル使用メモリ 80,108 KB
実行使用メモリ 60,352 KB
最終ジャッジ日時 2024-06-30 22:51:59
合計ジャッジ時間 12,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,248 KB
testcase_01 AC 154 ms
55,064 KB
testcase_02 AC 209 ms
55,164 KB
testcase_03 AC 364 ms
59,680 KB
testcase_04 AC 243 ms
55,380 KB
testcase_05 AC 139 ms
54,412 KB
testcase_06 AC 304 ms
59,724 KB
testcase_07 AC 204 ms
56,664 KB
testcase_08 AC 278 ms
55,560 KB
testcase_09 AC 380 ms
60,352 KB
testcase_10 AC 361 ms
59,980 KB
testcase_11 AC 173 ms
54,996 KB
testcase_12 AC 323 ms
59,796 KB
testcase_13 AC 332 ms
59,860 KB
testcase_14 AC 252 ms
57,524 KB
testcase_15 AC 275 ms
59,832 KB
testcase_16 AC 269 ms
59,544 KB
testcase_17 AC 287 ms
57,360 KB
testcase_18 AC 282 ms
58,008 KB
testcase_19 AC 299 ms
59,592 KB
testcase_20 AC 157 ms
54,788 KB
testcase_21 AC 153 ms
54,940 KB
testcase_22 AC 324 ms
60,208 KB
testcase_23 AC 326 ms
59,572 KB
testcase_24 AC 352 ms
60,044 KB
testcase_25 AC 334 ms
60,160 KB
testcase_26 AC 233 ms
57,880 KB
testcase_27 AC 320 ms
59,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No326_alt1{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int K = sc.nextInt();
		ArrayList<Integer> A_tmp = new ArrayList<Integer>(N);
		for(int i = 0; i < N; i++){
			A_tmp.add(i+1);
		}
		for(int i = 0; i < K; i++){
			int x = sc.nextInt()-1;
			int y = sc.nextInt()-1;
			int tmp = A_tmp.get(x);
			A_tmp.set(x, A_tmp.get(y));
			A_tmp.set(y, tmp);
		}

		
		ArrayList<Integer> A_end = new ArrayList<Integer>(N);
		for(int i = 0; i < N; i++) A_end.add(0);
		for(int i = 0; i < N; i++){
			int idx_end = sc.nextInt()-1;
			A_end.set(idx_end, i+1);
		}

		// System.out.println(A_tmp.toString());
		// System.out.println(A_end.toString());
				ArrayList<Integer> ans = new ArrayList<Integer>(N*N/2);
		for(int i = 0; i < N; i++){
			if(A_tmp.get(i) != A_end.get(i)){
				int a_end = A_end.get(i);
				int idx = A_tmp.indexOf(a_end);
				for(int j = idx-1; j >= i; j--){
					A_tmp.set(j+1, A_tmp.get(j));
					ans.add(j);
				}
				A_tmp.set(i, a_end);
			}
		}

		System.out.println(ans.size());
		for(int idx:ans){
			System.out.println((idx+1) +" "+ (idx+2));
		}
	}
}
0