結果

問題 No.482 あなたの名は
ユーザー 37zigen37zigen
提出日時 2017-02-11 03:26:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 931 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 3,950 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 57,012 KB
最終ジャッジ日時 2024-12-29 20:35:03
合計ジャッジ時間 22,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long K = sc.nextLong();
		int[] D = new int[N];
		for (int i = 0; i < N; ++i) {
			D[i] = sc.nextInt() - 1;
		}

		boolean[] vis = new boolean[N];
		int cnt = 0;
		for (int i = 0; i < N; ++i) {
			if (vis[i])
				continue;
			int cur = i;
			vis[i] = true;
			while (D[cur] != i) {
				cur = D[cur];
				vis[cur] = true;
				++cnt;
			}
		}
		if (cnt % 2 != K % 2 || cnt > K) {
			System.out.println("NO");
		} else {
			System.out.println("YES");
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0