結果

問題 No.429 CupShuffle
ユーザー Mcpu3Mcpu3
提出日時 2018-09-19 17:18:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 1,900 ms
コンパイル使用メモリ 78,936 KB
実行使用メモリ 59,992 KB
最終ジャッジ日時 2024-07-18 08:18:11
合計ジャッジ時間 8,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
43,820 KB
testcase_01 AC 119 ms
41,968 KB
testcase_02 AC 139 ms
41,784 KB
testcase_03 AC 135 ms
41,808 KB
testcase_04 AC 193 ms
43,340 KB
testcase_05 AC 112 ms
41,716 KB
testcase_06 AC 187 ms
44,084 KB
testcase_07 AC 187 ms
44,504 KB
testcase_08 AC 130 ms
41,856 KB
testcase_09 AC 193 ms
43,776 KB
testcase_10 AC 398 ms
48,024 KB
testcase_11 AC 840 ms
55,040 KB
testcase_12 AC 931 ms
59,768 KB
testcase_13 AC 822 ms
55,432 KB
testcase_14 AC 948 ms
59,992 KB
testcase_15 AC 114 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void s(int x,int y,int a[]){
        int t=a[x-1];
        a[x-1]=a[y-1];
        a[y-1]=t;
    }

    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt(),k=sc.nextInt(),x=sc.nextInt(),a[]=new int[k-1],b[]=new int[k-1],c[]=new int[n],f=0,t[]=new int[n];
        String s=new String();
        for(int i=0;i<n;++i)t[i]=i+1;
        for(int i=1;i<x;++i){
            a[0]=sc.nextInt();
            b[0]=sc.nextInt();
            s(a[0],b[0],t);
        }
        for(int i=0;i<2;++i)s=sc.next();
        for(int i=0;i<k-x;++i){
            a[i]=sc.nextInt();
            b[i]=sc.nextInt();
        }
        for(int i=0;i<n;++i)c[i]=sc.nextInt();
        sc.close();
        for(int i=k-x-1;i>-1;--i)s(a[i],b[i],c);
        for(int i=0;i<n;++i){
            if(t[i]!=c[i])System.out.print(i+1+" ");
            else if(t[i]!=c[i]&&f>0){
                System.out.print(i+1);
                break;
            }
        }
    }
}
0