結果

問題 No.488 四角関係
ユーザー wotsushiwotsushi
提出日時 2017-03-03 22:10:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,711 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-06-22 05:20:10
合計ジャッジ時間 17,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,045 ms
13,440 KB
testcase_01 AC 830 ms
12,800 KB
testcase_02 AC 1,059 ms
13,312 KB
testcase_03 AC 420 ms
13,056 KB
testcase_04 AC 636 ms
13,056 KB
testcase_05 AC 1,394 ms
13,440 KB
testcase_06 AC 1,971 ms
13,568 KB
testcase_07 AC 2,714 ms
13,440 KB
testcase_08 AC 3,711 ms
13,312 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 296 ms
12,928 KB
testcase_11 AC 98 ms
13,056 KB
testcase_12 AC 204 ms
12,800 KB
testcase_13 AC 275 ms
12,928 KB
testcase_14 AC 122 ms
13,184 KB
testcase_15 AC 97 ms
12,416 KB
testcase_16 AC 86 ms
12,288 KB
testcase_17 AC 89 ms
12,416 KB
testcase_18 AC 94 ms
12,288 KB
testcase_19 AC 97 ms
12,672 KB
testcase_20 AC 87 ms
12,288 KB
testcase_21 AC 86 ms
12,160 KB
testcase_22 AC 92 ms
12,416 KB
testcase_23 AC 90 ms
12,416 KB
testcase_24 AC 97 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
a, b = (1..M).map {gets.split.map(&:to_i)}.transpose
g = Array.new(N) {|i| Array.new(N) {|j| a.zip(b).any? {|x, y| [x, y] == [i, j].sort}}}
ans = if N <= 3
        0
      else
        (0...N).to_a.combination(4).count {|arr| arr.permutation.any? {|x, y, z, w| g[x][y] and g[y][z] and g[z][w] and g[w][x] and not g[x][z] and not g[y][w]}}
      end
puts ans
0