結果
問題 | No.762 PDCAパス |
ユーザー |
|
提出日時 | 2019-01-17 12:10:54 |
言語 | Nim (2.2.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 960 bytes |
コンパイル時間 | 3,345 ms |
コンパイル使用メモリ | 69,148 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 06:56:09 |
合計ジャッジ時間 | 4,690 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 = toSeq(stdin.readLine().items).mapIt: case it: of 'P':0 of 'D':1 of 'C':2 else : 3 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[v] - S[u] != 1 : continue case S[v]: of 1 : ans[v] += 1 of 2 : DC &= (u,v) else : CA &= u for dc in DC: ans[dc[1]] += ans[dc[0]] echo CA.mapIt(ans[it]).sum() mod 1000000007