結果

問題 No.482 あなたの名は
ユーザー nanaenanae
提出日時 2017-03-23 06:07:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,288 KB
最終ジャッジ日時 2024-07-05 20:22:38
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 23 ms
10,752 KB
testcase_02 AC 23 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 24 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 23 ms
10,624 KB
testcase_14 AC 24 ms
10,752 KB
testcase_15 AC 170 ms
30,156 KB
testcase_16 AC 175 ms
30,156 KB
testcase_17 AC 168 ms
30,160 KB
testcase_18 AC 169 ms
30,028 KB
testcase_19 AC 177 ms
30,160 KB
testcase_20 AC 171 ms
30,032 KB
testcase_21 AC 169 ms
30,032 KB
testcase_22 AC 172 ms
30,288 KB
testcase_23 AC 182 ms
30,156 KB
testcase_24 AC 170 ms
30,188 KB
testcase_25 AC 174 ms
30,160 KB
testcase_26 AC 174 ms
30,064 KB
testcase_27 AC 173 ms
30,160 KB
testcase_28 AC 167 ms
30,032 KB
testcase_29 AC 158 ms
30,284 KB
testcase_30 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
D = [int(i) - 1 for i in input().split()]
visited = [False] * N
min_change = 0

for i in range(N):
    if visited[i]:
        continue

    visited[i] = True
    cycle_l = 0

    while not visited[D[i]]:
        i = D[i]
        visited[i] = True
        cycle_l += 1

    min_change += cycle_l

if min_change <= K and not((K ^ min_change) & 1):
    print('YES')
else:
    print('NO')
0