結果

問題 No.482 あなたの名は
ユーザー tanzakutanzaku
提出日時 2017-02-10 22:54:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 690 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 4,262 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 65,176 KB
最終ジャッジ日時 2024-06-09 11:25:26
合計ジャッジ時間 16,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,100 KB
testcase_01 AC 116 ms
53,904 KB
testcase_02 AC 117 ms
53,852 KB
testcase_03 AC 117 ms
54,140 KB
testcase_04 AC 118 ms
53,960 KB
testcase_05 AC 114 ms
54,024 KB
testcase_06 AC 114 ms
53,860 KB
testcase_07 AC 162 ms
54,140 KB
testcase_08 AC 154 ms
54,344 KB
testcase_09 AC 124 ms
54,000 KB
testcase_10 AC 153 ms
54,560 KB
testcase_11 AC 160 ms
54,824 KB
testcase_12 AC 154 ms
54,288 KB
testcase_13 AC 168 ms
54,340 KB
testcase_14 AC 163 ms
54,332 KB
testcase_15 AC 652 ms
63,800 KB
testcase_16 AC 614 ms
63,628 KB
testcase_17 AC 690 ms
63,688 KB
testcase_18 AC 656 ms
63,396 KB
testcase_19 AC 662 ms
63,736 KB
testcase_20 AC 669 ms
63,452 KB
testcase_21 AC 647 ms
63,444 KB
testcase_22 AC 639 ms
63,948 KB
testcase_23 AC 629 ms
63,660 KB
testcase_24 AC 640 ms
64,268 KB
testcase_25 AC 642 ms
64,392 KB
testcase_26 AC 653 ms
63,808 KB
testcase_27 AC 579 ms
63,504 KB
testcase_28 AC 621 ms
63,788 KB
testcase_29 AC 643 ms
65,176 KB
testcase_30 AC 113 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class _482 {
	public static void main(String[] args) throws IOException {
		new _482().solve();
	}

	void solve() throws IOException {
		try (final Scanner in = new Scanner(System.in)) {
			int n = in.nextInt();
			long k = in.nextLong();
			int[] D = new int[n];
			for (int i = 0; i < n; i++) {
				D[i] = in.nextInt() - 1;
			}
			boolean[] vis = new boolean[n];
			for (int i = 0; i < n; i++) if (!vis[i]) {
				int c = 1;
				for (int j = D[i]; j != i; j = D[j], c++) vis[j] = true;
				k -= c - 1;
			}
			System.out.println(k >= 0 && k % 2 == 0 ? "YES" : "NO");
		}
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0