結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
26,752 KB
testcase_01 AC 82 ms
18,976 KB
testcase_02 AC 81 ms
27,008 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 84 ms
12,032 KB
testcase_05 AC 165 ms
13,312 KB
testcase_06 AC 131 ms
13,952 KB
testcase_07 AC 151 ms
15,616 KB
testcase_08 AC 136 ms
13,184 KB
testcase_09 AC 132 ms
13,440 KB
testcase_10 AC 126 ms
14,720 KB
testcase_11 AC 130 ms
14,976 KB
testcase_12 AC 154 ms
16,384 KB
testcase_13 AC 155 ms
13,184 KB
testcase_14 AC 101 ms
12,928 KB
testcase_15 AC 155 ms
13,440 KB
testcase_16 AC 171 ms
13,568 KB
testcase_17 AC 181 ms
14,848 KB
testcase_18 AC 165 ms
14,336 KB
testcase_19 AC 163 ms
15,360 KB
testcase_20 AC 105 ms
13,056 KB
testcase_21 AC 94 ms
12,544 KB
testcase_22 AC 119 ms
13,184 KB
testcase_23 AC 180 ms
14,976 KB
testcase_24 AC 1,595 ms
13,568 KB
testcase_25 TLE -
testcase_26 AC 186 ms
16,768 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 84 ms
12,032 KB
testcase_31 AC 86 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 next_v != 1 && @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