結果

問題 No.812 Change of Class
ユーザー tatt61880tatt61880
提出日時 2019-04-13 00:25:20
言語 Kuin
(KuinC++ v.2021.9.17)
結果
TLE  
実行時間 -
コード長 1,163 bytes
コンパイル時間 2,661 ms
コンパイル使用メモリ 150,764 KB
実行使用メモリ 22,968 KB
最終ジャッジ日時 2024-09-16 10:13:10
合計ジャッジ時間 16,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
22,968 KB
testcase_01 AC 25 ms
5,376 KB
testcase_02 AC 86 ms
8,064 KB
testcase_03 AC 183 ms
13,184 KB
testcase_04 AC 160 ms
12,032 KB
testcase_05 AC 423 ms
13,184 KB
testcase_06 AC 342 ms
10,880 KB
testcase_07 AC 10 ms
7,424 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 377 ms
14,720 KB
testcase_10 AC 413 ms
14,720 KB
testcase_11 AC 46 ms
13,952 KB
testcase_12 AC 269 ms
14,336 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 256 ms
10,880 KB
testcase_16 AC 15 ms
5,376 KB
testcase_17 AC 231 ms
11,264 KB
testcase_18 AC 164 ms
9,216 KB
testcase_19 AC 191 ms
10,240 KB
testcase_20 AC 393 ms
14,464 KB
testcase_21 AC 155 ms
9,088 KB
testcase_22 AC 72 ms
6,144 KB
testcase_23 AC 12 ms
5,376 KB
testcase_24 AC 20 ms
5,376 KB
testcase_25 AC 59 ms
5,760 KB
testcase_26 AC 311 ms
12,544 KB
testcase_27 AC 269 ms
11,392 KB
testcase_28 AC 184 ms
10,112 KB
testcase_29 AC 40 ms
5,376 KB
testcase_30 AC 247 ms
11,264 KB
testcase_31 AC 191 ms
9,984 KB
testcase_32 AC 86 ms
6,784 KB
testcase_33 AC 265 ms
12,032 KB
testcase_34 AC 18 ms
5,376 KB
testcase_35 AC 45 ms
5,760 KB
testcase_36 AC 17 ms
5,376 KB
testcase_37 AC 112 ms
7,296 KB
testcase_38 AC 17 ms
8,192 KB
testcase_39 AC 113 ms
7,168 KB
testcase_40 AC 28 ms
5,376 KB
testcase_41 AC 13 ms
7,808 KB
testcase_42 AC 250 ms
10,752 KB
testcase_43 AC 70 ms
9,984 KB
testcase_44 AC 167 ms
8,704 KB
testcase_45 AC 18 ms
5,376 KB
testcase_46 AC 66 ms
9,600 KB
testcase_47 AC 165 ms
8,704 KB
testcase_48 AC 189 ms
10,368 KB
testcase_49 AC 47 ms
5,376 KB
testcase_50 AC 4 ms
5,376 KB
testcase_51 AC 52 ms
6,400 KB
testcase_52 AC 113 ms
9,856 KB
testcase_53 AC 30 ms
5,376 KB
testcase_54 AC 25 ms
5,376 KB
testcase_55 TLE -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var ss: [][]char
	do ss :: cui@input().split(" ")
	var N: int :: ss[0].toInt(&)
	var M: int :: ss[1].toInt(&)
	var friends: [][]int :: #[N, 0]int
	for i(0, M - 1)
		do ss :: cui@input().split(" ")
		var p: int :: ss[0].toInt(&) - 1
		var q: int :: ss[1].toInt(&) - 1
		do friends[p] :~ [q]
		do friends[q] :~ [p]
	end for
	var Q: int :: cui@input().toInt(&)
	
	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@input().toInt(&) - 1
		do people[A] :: 1
		do que.add(A)
		var num: int :: 0
		while(^que <> 0)
			var p: int :: que.get()
			for i(0, ^friends[p] - 1)
				var f: int :: friends[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