結果

問題 No.482 あなたの名は
ユーザー Konton7Konton7
提出日時 2019-05-25 01:36:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,676 KB
最終ジャッジ日時 2024-09-17 15:01:01
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 218 ms
29,468 KB
testcase_16 AC 210 ms
29,596 KB
testcase_17 AC 217 ms
29,724 KB
testcase_18 AC 216 ms
29,464 KB
testcase_19 AC 219 ms
29,596 KB
testcase_20 AC 217 ms
29,724 KB
testcase_21 AC 221 ms
29,596 KB
testcase_22 AC 217 ms
29,720 KB
testcase_23 AC 216 ms
29,592 KB
testcase_24 AC 216 ms
29,724 KB
testcase_25 AC 219 ms
29,592 KB
testcase_26 AC 219 ms
29,596 KB
testcase_27 AC 217 ms
29,596 KB
testcase_28 AC 227 ms
29,720 KB
testcase_29 AC 291 ms
32,676 KB
testcase_30 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = [ int(v) for v in input().split() ]

number_list = [ (int(v)-1) for v in input().split() ]
change_list= []


for i in range(n):
	if number_list[i] == i:
		 number_list[i] = -1
	elif number_list[i] == -1:
		 pass
	else:
		temp_list = [number_list[i]]
		
		next_i = number_list[i]
		number_list[i] = -1
		while next_i not in [i,-1] :
			temp_list.append(number_list[next_i])
			now_i = next_i
			next_i = number_list[next_i]
			number_list[now_i] = -1
		change_list.append(temp_list)


change_list = [len(change_list[i])-1 for i in range(len(change_list))]


if k >= sum(change_list) and (k - sum(change_list)) % 2 == 0:
	print("YES")
else:
	print("NO")
0