結果

問題 No.812 Change of Class
ユーザー tatt61880tatt61880
提出日時 2019-04-12 23:42:41
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 1,273 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 151,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-09-16 10:11:26
合計ジャッジ時間 14,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
15,488 KB
testcase_01 AC 27 ms
5,632 KB
testcase_02 AC 96 ms
10,112 KB
testcase_03 AC 203 ms
17,536 KB
testcase_04 AC 189 ms
16,000 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 7 ms
7,040 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 34 ms
13,056 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 51 ms
6,272 KB
testcase_36 AC 19 ms
5,376 KB
testcase_37 AC 128 ms
8,576 KB
testcase_38 AC 13 ms
7,680 KB
testcase_39 AC 135 ms
8,448 KB
testcase_40 AC 31 ms
5,376 KB
testcase_41 AC 12 ms
7,168 KB
testcase_42 AC 371 ms
13,312 KB
testcase_43 AC 70 ms
10,880 KB
testcase_44 AC 199 ms
10,624 KB
testcase_45 AC 20 ms
5,376 KB
testcase_46 AC 63 ms
10,624 KB
testcase_47 AC 198 ms
10,496 KB
testcase_48 AC 231 ms
12,544 KB
testcase_49 AC 55 ms
5,888 KB
testcase_50 AC 3 ms
5,376 KB
testcase_51 AC 56 ms
6,912 KB
testcase_52 AC 120 ms
11,392 KB
testcase_53 AC 34 ms
5,376 KB
testcase_54 AC 29 ms
5,376 KB
testcase_55 AC 142 ms
13,696 KB
testcase_56 AC 167 ms
15,744 KB
testcase_57 AC 180 ms
16,384 KB
testcase_58 AC 92 ms
10,240 KB
testcase_59 AC 201 ms
18,176 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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: []list<int> :: #[N]list<int>
	for i(0, N - 1)
		do friends[i] :: #list<int>
	end for
	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].add(q)
		do friends[q].add(p)
	end for
	var Q: int :: cui@input().toInt(&)
	
	var st: stack<int> :: #stack<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 st.add(A)
		var num: int :: 0
		while(^st <> 0)
			var p: int :: st.get()
			do friends[p].head()
			for i(0, ^friends[p] - 1)
				var f: int :: friends[p].get()
				do friends[p].next()
				if(people[f] = 0)
					do people[f] :: people[p] + 1
					do num :+ 1
					do st.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