結果

問題 No.326 あみだますたー
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-26 02:37:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 3,690 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 60,212 KB
最終ジャッジ日時 2024-06-30 22:51:21
合計ジャッジ時間 12,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
52,984 KB
testcase_01 AC 158 ms
54,964 KB
testcase_02 AC 204 ms
55,172 KB
testcase_03 AC 364 ms
59,632 KB
testcase_04 AC 249 ms
55,168 KB
testcase_05 AC 144 ms
54,144 KB
testcase_06 AC 308 ms
59,704 KB
testcase_07 AC 208 ms
56,652 KB
testcase_08 AC 281 ms
55,356 KB
testcase_09 AC 368 ms
59,924 KB
testcase_10 AC 369 ms
60,128 KB
testcase_11 AC 174 ms
54,820 KB
testcase_12 AC 333 ms
59,496 KB
testcase_13 AC 326 ms
60,212 KB
testcase_14 AC 259 ms
57,916 KB
testcase_15 AC 281 ms
58,800 KB
testcase_16 AC 272 ms
59,692 KB
testcase_17 AC 289 ms
58,356 KB
testcase_18 AC 288 ms
58,380 KB
testcase_19 AC 303 ms
59,552 KB
testcase_20 AC 161 ms
54,852 KB
testcase_21 AC 159 ms
55,200 KB
testcase_22 AC 325 ms
60,008 KB
testcase_23 AC 328 ms
59,144 KB
testcase_24 AC 349 ms
59,996 KB
testcase_25 AC 334 ms
60,064 KB
testcase_26 AC 238 ms
58,268 KB
testcase_27 AC 326 ms
60,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		int N = sc.nextInt();
		int K = sc.nextInt();
		int[] A_tmp = new int[N];
		for(int i = 0; i < N; i++){
			A_tmp[i] = i+1;
		}
		for(int i = 0; i < K; i++){
			int x = sc.nextInt()-1;
			int y = sc.nextInt()-1;
			int tmp = A_tmp[x];
			A_tmp[x] = A_tmp[y];
			A_tmp[y] = tmp;
		}

		int[] A = new int[N];
		for(int i = 0; i < N; i++){
			A[i] = sc.nextInt();
		}
		for(int i = 0; i < N; i++){
			A_tmp[i] = A[A_tmp[i]-1];
		}

		// System.out.println(Arrays.toString(A_tmp));
		ArrayList<Integer> ans = new ArrayList<Integer>();
		for(int i = 1; i < N; i++){
			for(int j = i-1; j >= 0; j--){
				if(A_tmp[j] > A_tmp[j+1]){
					int tmp = A_tmp[j];
					A_tmp[j] = A_tmp[j+1];
					A_tmp[j+1] = tmp;
					ans.add(j);
				}
			}
		}
		
		System.out.println(ans.size());
		for(int idx:ans){
			System.out.println((idx+1) +" "+ (idx+2));
		}
	}
}
0