結果

問題 No.326 あみだますたー
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:38:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 958 bytes
コンパイル時間 3,747 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 48,764 KB
最終ジャッジ日時 2024-11-22 12:24:27
合計ジャッジ時間 12,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,244 KB
testcase_01 AC 143 ms
41,576 KB
testcase_02 AC 207 ms
42,992 KB
testcase_03 AC 364 ms
48,400 KB
testcase_04 AC 237 ms
43,256 KB
testcase_05 AC 141 ms
41,112 KB
testcase_06 AC 307 ms
47,860 KB
testcase_07 AC 206 ms
43,992 KB
testcase_08 AC 277 ms
43,440 KB
testcase_09 AC 368 ms
48,612 KB
testcase_10 AC 365 ms
48,764 KB
testcase_11 AC 169 ms
42,412 KB
testcase_12 AC 329 ms
47,648 KB
testcase_13 AC 327 ms
48,560 KB
testcase_14 AC 257 ms
44,196 KB
testcase_15 AC 275 ms
47,564 KB
testcase_16 AC 283 ms
46,496 KB
testcase_17 AC 301 ms
45,064 KB
testcase_18 AC 282 ms
46,888 KB
testcase_19 AC 300 ms
47,984 KB
testcase_20 AC 155 ms
42,320 KB
testcase_21 AC 144 ms
42,008 KB
testcase_22 AC 306 ms
47,888 KB
testcase_23 AC 330 ms
47,880 KB
testcase_24 AC 351 ms
48,728 KB
testcase_25 AC 336 ms
47,912 KB
testcase_26 AC 233 ms
45,320 KB
testcase_27 AC 316 ms
48,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt(), k = sc.nextInt(), a, b, tmp, cnt = 0;
		String[] s = new String[n * (n - 1) / 2];
		int[] t = new int[n + 1], m = new int[n + 1];
		for (int i = 1; i <= n; i++) {
			t[i] = i;
		}
		for (int i = 0; i < k; i++) {
			a = sc.nextInt();
			b = sc.nextInt();
			tmp = t[a];
			t[a] = t[b];
			t[b] = tmp;
		}
		for (int i = 1; i <= n; i++) {
			tmp = sc.nextInt();
			m[tmp] = i;
		}
		for (int i = 1; i < n; i++) {
			if (t[i] == m[i]) {
				continue;
			}
			for (int j = i + 1; j <= n; j++) {
				if (t[j] == m[i]) {
					for (int l = j; l > i; l--) {
						tmp = t[l - 1];
						t[l - 1] = t[l];
						t[l] = tmp;
						s[cnt] = (l - 1) + " " + l;
						cnt++;
					}
					break;
				}
			}
		}
		System.out.println(cnt);
		for (int i = 0; i < cnt; i++) {
			System.out.println(s[i]);
		}
	}
}
0