結果

問題 No.482 あなたの名は
ユーザー atkrymatkrym
提出日時 2017-02-19 13:50:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 65,612 KB
最終ジャッジ日時 2024-06-09 14:19:52
合計ジャッジ時間 16,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,924 KB
testcase_01 AC 128 ms
54,048 KB
testcase_02 AC 117 ms
53,036 KB
testcase_03 AC 128 ms
53,740 KB
testcase_04 AC 112 ms
52,576 KB
testcase_05 AC 128 ms
53,684 KB
testcase_06 AC 126 ms
53,696 KB
testcase_07 AC 177 ms
56,176 KB
testcase_08 AC 169 ms
56,312 KB
testcase_09 AC 137 ms
53,880 KB
testcase_10 AC 169 ms
56,296 KB
testcase_11 AC 168 ms
56,288 KB
testcase_12 AC 182 ms
56,320 KB
testcase_13 AC 167 ms
56,248 KB
testcase_14 AC 159 ms
56,388 KB
testcase_15 AC 716 ms
64,196 KB
testcase_16 AC 741 ms
63,752 KB
testcase_17 AC 740 ms
63,532 KB
testcase_18 AC 710 ms
64,348 KB
testcase_19 AC 673 ms
64,300 KB
testcase_20 AC 695 ms
63,788 KB
testcase_21 AC 682 ms
63,848 KB
testcase_22 AC 686 ms
63,952 KB
testcase_23 AC 729 ms
63,900 KB
testcase_24 AC 734 ms
64,284 KB
testcase_25 AC 747 ms
64,104 KB
testcase_26 AC 760 ms
64,232 KB
testcase_27 AC 714 ms
64,208 KB
testcase_28 AC 686 ms
64,264 KB
testcase_29 AC 632 ms
65,612 KB
testcase_30 AC 126 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	private static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		long k = sc.nextLong();
		int[] l = new int[200010];
		boolean[] b = new boolean[200010];
		for (int i = 1;i <= n;i++) {
			l[i] = sc.nextInt();
		}

		int r = 0;
		for (int i = 1;i <= n;i++) {
			if (b[i]) continue;
			int s = i;
			int j = l[i];
			int c = 0;
			b[i] = true;
			while (true) {
				if (j==s) break;
				b[j] = true;
				j = l[j];
				c++;
			}
			r += c;
			b[i] = true;
		}

		if (r<=k) {
			if ((k-r)%2==0) {
				System.out.println("YES");
			} else {
				System.out.println("NO");
			}
		} else {
			System.out.println("NO");
		}
	}
}
0