結果

問題 No.482 あなたの名は
ユーザー uafr_csuafr_cs
提出日時 2017-02-10 22:55:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 79,064 KB
実行使用メモリ 65,708 KB
最終ジャッジ日時 2024-06-09 11:25:45
合計ジャッジ時間 14,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,024 KB
testcase_01 AC 111 ms
53,852 KB
testcase_02 AC 100 ms
52,980 KB
testcase_03 AC 100 ms
52,964 KB
testcase_04 AC 98 ms
52,628 KB
testcase_05 AC 99 ms
53,060 KB
testcase_06 AC 118 ms
54,320 KB
testcase_07 AC 163 ms
54,568 KB
testcase_08 AC 143 ms
54,140 KB
testcase_09 AC 121 ms
53,880 KB
testcase_10 AC 144 ms
56,132 KB
testcase_11 AC 166 ms
54,588 KB
testcase_12 AC 163 ms
54,592 KB
testcase_13 AC 155 ms
54,272 KB
testcase_14 AC 147 ms
54,256 KB
testcase_15 AC 628 ms
64,252 KB
testcase_16 AC 653 ms
63,796 KB
testcase_17 AC 676 ms
63,332 KB
testcase_18 AC 637 ms
64,136 KB
testcase_19 AC 628 ms
63,384 KB
testcase_20 AC 654 ms
63,908 KB
testcase_21 AC 646 ms
63,616 KB
testcase_22 AC 624 ms
64,240 KB
testcase_23 AC 632 ms
64,268 KB
testcase_24 AC 617 ms
63,836 KB
testcase_25 AC 662 ms
63,728 KB
testcase_26 AC 653 ms
64,232 KB
testcase_27 AC 563 ms
63,664 KB
testcase_28 AC 634 ms
64,472 KB
testcase_29 AC 623 ms
65,708 KB
testcase_30 AC 109 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final long K = sc.nextLong();
		
		int[] swap = new int[N];
		for(int i = 0; i < N; i++){
			swap[i] = sc.nextInt() - 1;
		}
		int[] rev_swap = new int[N];
		for(int i = 0; i < N; i++){
			rev_swap[swap[i]] = i;
		}
		
		long min_times = 0;
		for(int i = 0; i < N; i++){
			if(swap[i] != i){
				final int swap_index = rev_swap[i];
				//System.out.println(i + " " + swap[i] + " " + swap_index);
				rev_swap[swap[i]] = swap_index;
				rev_swap[i] = i;
				swap[swap_index] = swap[i];
				swap[i] = i;
				
				min_times++;
			}
			//System.out.println(Arrays.toString(swap));
		}
		
		if(min_times > K || (K - min_times) % 2 != 0){
			System.out.println("NO");
		}else{
			System.out.println("YES");
		}
	}
}
0