結果

問題 No.762 PDCAパス
ユーザー 👑 obakyanobakyan
提出日時 2019-04-27 20:58:28
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-05-07 02:22:38
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 39 ms
5,376 KB
testcase_23 AC 41 ms
5,376 KB
testcase_24 AC 46 ms
9,088 KB
testcase_25 AC 44 ms
9,216 KB
testcase_26 AC 48 ms
7,296 KB
testcase_27 AC 47 ms
7,168 KB
testcase_28 AC 50 ms
7,552 KB
testcase_29 AC 49 ms
7,552 KB
testcase_30 AC 48 ms
7,424 KB
testcase_31 AC 48 ms
7,424 KB
testcase_32 AC 49 ms
7,552 KB
testcase_33 AC 46 ms
5,888 KB
testcase_34 AC 46 ms
5,888 KB
testcase_35 AC 45 ms
5,888 KB
testcase_36 AC 43 ms
5,376 KB
testcase_37 AC 48 ms
5,376 KB
testcase_38 AC 43 ms
5,376 KB
testcase_39 AC 44 ms
5,376 KB
testcase_40 AC 45 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local ior = io.read
local n, m = ior("*n", "*n", "*l")
local s = {}
local d_to_p = {}
local c_to_a = {}
local dc = {}
local str = ior()

for i = 1, n do
  s[i] = str:sub(i, i)
  d_to_p[i] = 0
  c_to_a[i] = 0
end

for i = 1, m do
  local a, b = ior("*n", "*n")
  if(s[a] == "D" and s[b] == "P") then d_to_p[a] = d_to_p[a] + 1
  elseif(s[b] == "D" and s[a] == "P") then d_to_p[b] = d_to_p[b] + 1
  elseif(s[a] == "C" and s[b] == "A") then c_to_a[a] = c_to_a[a] + 1
  elseif(s[b] == "C" and s[a] == "A") then c_to_a[b] = c_to_a[b] + 1
  elseif(s[a] == "D" and s[b] == "C") then
    local tmp = {}
    tmp.d, tmp.c = a, b
    table.insert(dc, tmp)
  elseif(s[b] == "D" and s[a] == "C") then
    local tmp = {}
    tmp.d, tmp.c = b, a
    table.insert(dc, tmp)
  end
end

local sum = 0
for k, v in pairs(dc) do
  local d, c = v.d, v.c
  sum = (sum + d_to_p[d] * c_to_a[c]) % 1000000007
end
print(sum)
0