結果

問題 No.326 あみだますたー
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 05:12:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 2,226 bytes
コンパイル時間 2,851 ms
コンパイル使用メモリ 79,568 KB
実行使用メモリ 60,396 KB
最終ジャッジ日時 2024-11-27 17:52:09
合計ジャッジ時間 11,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,000 KB
testcase_01 AC 162 ms
54,888 KB
testcase_02 AC 221 ms
55,436 KB
testcase_03 AC 395 ms
59,992 KB
testcase_04 AC 289 ms
55,892 KB
testcase_05 AC 140 ms
54,060 KB
testcase_06 AC 309 ms
59,752 KB
testcase_07 AC 213 ms
56,940 KB
testcase_08 AC 286 ms
55,192 KB
testcase_09 AC 380 ms
59,920 KB
testcase_10 AC 370 ms
60,068 KB
testcase_11 AC 177 ms
54,712 KB
testcase_12 AC 360 ms
59,420 KB
testcase_13 AC 336 ms
59,792 KB
testcase_14 AC 269 ms
58,604 KB
testcase_15 AC 283 ms
58,032 KB
testcase_16 AC 274 ms
59,648 KB
testcase_17 AC 323 ms
59,224 KB
testcase_18 AC 300 ms
58,788 KB
testcase_19 AC 304 ms
59,588 KB
testcase_20 AC 156 ms
54,776 KB
testcase_21 AC 157 ms
54,844 KB
testcase_22 AC 344 ms
59,844 KB
testcase_23 AC 355 ms
59,708 KB
testcase_24 AC 366 ms
59,816 KB
testcase_25 AC 366 ms
60,396 KB
testcase_26 AC 239 ms
58,084 KB
testcase_27 AC 357 ms
59,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] now = new int [N+1];
        for(int i=1; i<=N; i++){
            now[i]=i;
        }
        int K = sc.nextInt();
        for(int i=0; i<K; i++){
            int X = sc.nextInt();
            int Y = sc.nextInt();
            int j=1;
            int k=1;
            for(; j<=N; j++){
                if(X==now[j]){
                    break;
                }
            }
            for(;k<=N; k++){
                if(Y==now[k]){
                    break;
                }
            }
            now[j]=Y;
            now[k]=X;
        }
        
        int [] fin = new int [N+1];
        for(int i=1; i<=N; i++){
            fin[i] = sc.nextInt();
        }
        List<String> list = new ArrayList<String>();
        while(true){
            int count=0;
            for(int i=1; i<=N; i++){
                if(now[i]<fin[i]){
                    while(now[i]!=fin[i]){
                        String s = now[i]+" "+(now[i]+1);
                        list.add(s);
                        for(int j=1; j<=N; j++){
                            if(now[i]+1==now[j]){
                                now[i]++;
                                now[j]--;
                                break;
                            }
                        }
                    }
                }else if(now[i]>fin[i]){
                    while(now[i]!=fin[i]){
                        String s = (now[i]-1)+" "+now[i];
                        list.add(s);
                        for(int j=1; j<=N; j++){
                            if(now[i]-1==now[j]){
                                now[i]--;
                                now[j]++;
                                break;
                            }
                        }
                    }
                }else{
                    count++;
                }
            }
            if(count==N){break;}
        }
        
        int l=list.size();
        System.out.println(l);
        for(int i=0; i<l; i++){
            System.out.println(list.get(i));
        }
    }
}
0