結果

問題 No.812 Change of Class
ユーザー tatt61880tatt61880
提出日時 2020-04-24 19:13:10
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 419 ms / 4,000 ms
コード長 1,260 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 150,500 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-09-16 10:45:35
合計ジャッジ時間 12,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
23,040 KB
testcase_01 AC 25 ms
6,528 KB
testcase_02 AC 86 ms
14,080 KB
testcase_03 AC 188 ms
26,240 KB
testcase_04 AC 163 ms
23,680 KB
testcase_05 AC 387 ms
25,600 KB
testcase_06 AC 319 ms
21,376 KB
testcase_07 AC 14 ms
10,624 KB
testcase_08 AC 6 ms
6,016 KB
testcase_09 AC 362 ms
28,160 KB
testcase_10 AC 419 ms
28,288 KB
testcase_11 AC 55 ms
22,656 KB
testcase_12 AC 255 ms
26,624 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 234 ms
19,584 KB
testcase_16 AC 15 ms
5,376 KB
testcase_17 AC 220 ms
20,864 KB
testcase_18 AC 162 ms
16,256 KB
testcase_19 AC 188 ms
18,304 KB
testcase_20 AC 378 ms
27,776 KB
testcase_21 AC 155 ms
15,616 KB
testcase_22 AC 68 ms
9,472 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 19 ms
5,376 KB
testcase_25 AC 55 ms
8,320 KB
testcase_26 AC 294 ms
23,680 KB
testcase_27 AC 263 ms
21,376 KB
testcase_28 AC 183 ms
18,304 KB
testcase_29 AC 40 ms
6,784 KB
testcase_30 AC 233 ms
20,480 KB
testcase_31 AC 193 ms
17,664 KB
testcase_32 AC 86 ms
10,880 KB
testcase_33 AC 250 ms
22,656 KB
testcase_34 AC 18 ms
5,376 KB
testcase_35 AC 46 ms
8,064 KB
testcase_36 AC 17 ms
5,376 KB
testcase_37 AC 109 ms
11,648 KB
testcase_38 AC 21 ms
12,032 KB
testcase_39 AC 113 ms
11,776 KB
testcase_40 AC 29 ms
6,400 KB
testcase_41 AC 17 ms
11,008 KB
testcase_42 AC 252 ms
19,584 KB
testcase_43 AC 78 ms
16,768 KB
testcase_44 AC 164 ms
14,976 KB
testcase_45 AC 18 ms
5,376 KB
testcase_46 AC 71 ms
16,128 KB
testcase_47 AC 165 ms
15,104 KB
testcase_48 AC 187 ms
18,304 KB
testcase_49 AC 47 ms
7,552 KB
testcase_50 AC 4 ms
5,376 KB
testcase_51 AC 54 ms
9,472 KB
testcase_52 AC 114 ms
17,152 KB
testcase_53 AC 31 ms
6,144 KB
testcase_54 AC 26 ms
5,908 KB
testcase_55 AC 125 ms
20,352 KB
testcase_56 AC 146 ms
23,424 KB
testcase_57 AC 158 ms
24,576 KB
testcase_58 AC 83 ms
14,464 KB
testcase_59 AC 177 ms
27,520 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var N: int :: cui@inputInt()
	var M: int :: cui@inputInt()
	var friendList: []list<int> :: #[N]list<int>
	for i(0, N - 1)
		do friendList[i] :: #list<int>
	end for
	for i(0, M - 1)
		var p: int :: cui@inputInt() - 1
		var q: int :: cui@inputInt() - 1
		do friendList[p].add(q)
		do friendList[q].add(p)
	end for
	var friendArray: [][]int :: #[N][]int
	for i(0, N - 1)
		do friendArray[i] :: friendList[i].toArray()
	end for
	var Q: int :: cui@inputInt()
	
	var que: queue<int> :: #queue<int>
	var people: []int :: #[N]int
	for(1, Q)
		for i(0, N - 1)
			do people[i] :: 0
		end for
		var A: int :: cui@inputInt() - 1
		do people[A] :: 1
		do que.add(A)
		var num: int :: 0
		while(^que <> 0)
			var p: int :: que.get()
			for i(0, ^friendArray[p] - 1)
				var f: int :: friendArray[p][i]
				if(people[f] = 0)
					do people[f] :: people[p] + 1
					do num :+ 1
					do que.add(f)
				else
					if(people[p] + 1 < people[f])
						do people[f] :: people[p] + 1
					end if
				end if
			end for
		end while
		var len: int :: 0
		for i(0, N - 1)
			if(people[i] > len)
				do len :: people[i]
			end if
		end for
		do len :- 1
		var ans: int :: 0
		while(2 ^ ans < len)
			do ans :+ 1
		end while
		do cui@print("\{num} \{ans}\n")
	end for
end func
0