結果
問題 | No.326 あみだますたー |
ユーザー | yun_app |
提出日時 | 2016-05-10 18:50:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 142 ms / 2,000 ms |
コード長 | 1,758 bytes |
コンパイル時間 | 2,060 ms |
コンパイル使用メモリ | 77,828 KB |
実行使用メモリ | 41,004 KB |
最終ジャッジ日時 | 2024-11-08 00:16:49 |
合計ジャッジ時間 | 5,830 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,876 KB |
testcase_01 | AC | 50 ms
36,632 KB |
testcase_02 | AC | 53 ms
37,012 KB |
testcase_03 | AC | 136 ms
40,872 KB |
testcase_04 | AC | 58 ms
37,016 KB |
testcase_05 | AC | 51 ms
36,764 KB |
testcase_06 | AC | 115 ms
39,732 KB |
testcase_07 | AC | 86 ms
37,940 KB |
testcase_08 | AC | 82 ms
38,072 KB |
testcase_09 | AC | 135 ms
40,520 KB |
testcase_10 | AC | 142 ms
40,288 KB |
testcase_11 | AC | 49 ms
36,992 KB |
testcase_12 | AC | 115 ms
39,240 KB |
testcase_13 | AC | 134 ms
39,988 KB |
testcase_14 | AC | 65 ms
37,548 KB |
testcase_15 | AC | 108 ms
39,488 KB |
testcase_16 | AC | 112 ms
40,420 KB |
testcase_17 | AC | 88 ms
38,268 KB |
testcase_18 | AC | 80 ms
38,452 KB |
testcase_19 | AC | 119 ms
39,816 KB |
testcase_20 | AC | 51 ms
36,868 KB |
testcase_21 | AC | 50 ms
36,864 KB |
testcase_22 | AC | 118 ms
39,864 KB |
testcase_23 | AC | 120 ms
39,564 KB |
testcase_24 | AC | 140 ms
41,004 KB |
testcase_25 | AC | 119 ms
40,352 KB |
testcase_26 | AC | 70 ms
37,896 KB |
testcase_27 | AC | 114 ms
39,872 KB |
ソースコード
/* package whatever; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Ideone { public static void main (String[] args) throws java.lang.Exception { // your code goes here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int k = Integer.parseInt(br.readLine()); int l = Integer.parseInt(br.readLine()); String[] lines; ArrayList<Pair> pairs = new ArrayList<Pair>(); for(int i=0;i<l;i++){ lines = br.readLine().split(" "); pairs.add(new Pair(Integer.parseInt(lines[0])-1,Integer.parseInt(lines[1])-1)); } lines = br.readLine().split(" "); for(Pair pair:pairs){ String tmp = lines[pair.a]; lines[pair.a] = lines[pair.b]; lines[pair.b] = tmp; } int[] nlines = new int[k]; int i=0; for(String st:lines){ nlines[i++] = Integer.parseInt(st); } int cnt = 0; StringBuilder ans = new StringBuilder(); for(i=0;i<k-1;i++){ if(nlines[i] > nlines[i+1]){ ans.append(i+1).append(" ").append(i+2).append("\n"); int tmp = nlines[i]; nlines[i] = nlines[i+1]; nlines[i+1] = tmp; i=-1; cnt++; } } System.out.println(cnt); System.out.println(ans); } public static class Pair{ public int a; public int b; public Pair(int a,int b){ this.a = a; this.b = b; } } }