結果

問題 No.408 五輪ピック
ユーザー suppy193suppy193
提出日時 2016-11-02 14:34:43
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 497 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-11-25 01:28:59
合計ジャッジ時間 30,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
26,624 KB
testcase_01 AC 78 ms
18,980 KB
testcase_02 AC 77 ms
26,624 KB
testcase_03 AC 73 ms
12,416 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 151 ms
13,184 KB
testcase_06 AC 125 ms
13,824 KB
testcase_07 AC 143 ms
15,488 KB
testcase_08 AC 133 ms
13,312 KB
testcase_09 AC 134 ms
13,184 KB
testcase_10 AC 124 ms
14,720 KB
testcase_11 AC 126 ms
15,104 KB
testcase_12 AC 148 ms
16,384 KB
testcase_13 AC 147 ms
13,056 KB
testcase_14 AC 95 ms
12,928 KB
testcase_15 AC 148 ms
13,184 KB
testcase_16 AC 152 ms
13,568 KB
testcase_17 AC 162 ms
14,720 KB
testcase_18 AC 158 ms
14,592 KB
testcase_19 AC 164 ms
15,360 KB
testcase_20 AC 97 ms
13,056 KB
testcase_21 AC 89 ms
12,416 KB
testcase_22 AC 109 ms
13,184 KB
testcase_23 AC 158 ms
15,232 KB
testcase_24 AC 1,481 ms
13,568 KB
testcase_25 TLE -
testcase_26 AC 174 ms
16,768 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 85 ms
12,160 KB
testcase_31 AC 82 ms
27,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.strip.split(' ').map(&:to_i)
#p n, m
@matrix = []
(1..n).each do |i|
	@matrix[i] = []
end

m.times do
	s, e = gets.strip.split(' ').map(&:to_i)	
	@matrix[s] << e
	@matrix[e] << s
end
#p @matrix

s = 1
path = [s]

def dfs(v, path)
	return if path.length > 5
	@matrix[v].each do |next_v|
		if next_v == 1 && path.length == 5
			puts "YES"
			exit
		end
		if @matrix[v].include?(next_v) && !path.include?(next_v)
			dfs(next_v, path.clone << next_v)
		end
	end
end

dfs(s, path)
puts "NO"
0