結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | magurofly |
提出日時 | 2021-01-19 23:24:04 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,228 bytes |
コンパイル時間 | 278 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 20,096 KB |
最終ジャッジ日時 | 2024-05-10 00:46:03 |
合計ジャッジ時間 | 8,962 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
12,032 KB |
testcase_01 | AC | 77 ms
12,288 KB |
testcase_02 | AC | 78 ms
12,160 KB |
testcase_03 | AC | 77 ms
12,288 KB |
testcase_04 | WA | - |
testcase_05 | AC | 75 ms
12,288 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 76 ms
12,160 KB |
testcase_09 | AC | 76 ms
12,288 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 91 ms
14,336 KB |
testcase_14 | AC | 103 ms
18,432 KB |
testcase_15 | AC | 84 ms
12,928 KB |
testcase_16 | WA | - |
testcase_17 | AC | 81 ms
12,160 KB |
testcase_18 | AC | 91 ms
14,464 KB |
testcase_19 | AC | 83 ms
12,288 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 90 ms
12,416 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 88 ms
12,160 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 154 ms
19,200 KB |
testcase_33 | AC | 144 ms
19,200 KB |
testcase_34 | AC | 148 ms
19,584 KB |
testcase_35 | WA | - |
testcase_36 | AC | 75 ms
12,288 KB |
testcase_37 | AC | 90 ms
12,160 KB |
testcase_38 | AC | 95 ms
12,800 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 79 ms
12,288 KB |
testcase_45 | AC | 77 ms
12,288 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 76 ms
12,160 KB |
testcase_61 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
class BitAndOrMatrix attr_reader :n, :bits def initialize(n, bits) @n, @bits = n, bits @u = (1 << n) - 1 @v = ((@u + 1)**n - 1) / @u end def self.rows(rows) n, bits = rows.size, 0 rows.each_with_index do |row, i| x = 0 row.each_with_index do |a, j| x |= a << j end bits |= x << n * i end new(n, bits) end def self.id(n) new(n, ((1 << (n + 1) * n) - 1) / ((1 << n + 1) - 1)) end def [](i, j) @bits >> i * @n + j & 1 end def +(other) self.class.new(@n, @bits | other.bits) end def *(other) a, b = @bits, other.bits bits = 0 while a > 0 and b > 0 bits ^= ((a & @v) * @u) & ((b & @u) * @v) a >>= 1 b >>= n end self.class.new(@n, bits) end def **(e) r = self.class.id(@n) x = self while e > 0 r *= x if (e & 1) == 1 x *= x e >>= 1 end r end def to_a (0 ... @n).map { |i| (0 ... @n).map { |j| self[i, j] } } end end N, M, T = gets.split.map(&:to_i) rows = Array.new(N) { [0] * N } M.times do a, b = gets.split.map(&:to_i) rows[b][a] = 1 end ans = BitAndOrMatrix.rows(rows) ** T #STDERR.puts ans.to_a.map(&:inspect) puts ans.to_a[0].sum