結果
| 問題 |
No.762 PDCAパス
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-17 12:20:41 |
| 言語 | Nim (2.2.0) |
| 結果 |
AC
|
| 実行時間 | 10 ms / 2,000 ms |
| コード長 | 923 bytes |
| コンパイル時間 | 3,254 ms |
| コンパイル使用メモリ | 67,528 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-01 06:56:44 |
| 合計ジャッジ時間 | 4,624 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 38 |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 54) Warning: imported and not used: 'strformat' [UnusedImport] /home/judge/data/code/Main.nim(1, 17) Warning: imported and not used: 'strutils' [UnusedImport] /home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'algorithm' [UnusedImport] /home/judge/data/code/Main.nim(1, 47) Warning: imported and not used: 'macros' [UnusedImport] /home/judge/data/code/Main.nim(1, 41) Warning: imported and not used: 'sugar' [UnusedImport]
ソースコード
import sequtils,strutils,algorithm,math,sugar,macros,strformat
template times*(n:int32,body) = (for _ in 0..<n: body)
template `max=`*(x,y) = x = max(x,y)
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .}
proc scan(): int32 =
var minus = false
while true:
var k = getchar_unlocked()
if k == '-' : minus = true
elif k < '0' or k > '9': break
else: result = 10 * result + k.ord.int32 - '0'.ord.int32
if minus: result *= -1
let n = scan()
let m = scan()
let S = stdin.readLine()
var DC = newSeq[(int32,int32)]()
var CA = newSeq[int32]()
var ans = newSeq[int32](n)
m.times:
var u = scan() - 1
var v = scan() - 1
if S[u] < S[v]: (u,v) = (v,u)
if S[u] == 'P' and S[v] == 'D' : ans[v] += 1
elif S[u] == 'D' and S[v] == 'C' : DC &= (u,v)
elif S[u] == 'C' and S[v] == 'A' : CA &= u
for dc in DC: ans[dc[1]] += ans[dc[0]]
echo CA.mapIt(ans[it]).sum() mod 1000000007