結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | むらため |
提出日時 | 2019-01-30 02:24:13 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 100 ms / 2,000 ms |
コード長 | 1,432 bytes |
コンパイル時間 | 2,856 ms |
コンパイル使用メモリ | 78,052 KB |
実行使用メモリ | 28,504 KB |
最終ジャッジ日時 | 2024-07-01 11:09:04 |
合計ジャッジ時間 | 5,021 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
28,504 KB |
testcase_01 | AC | 23 ms
8,788 KB |
testcase_02 | AC | 69 ms
13,056 KB |
testcase_03 | AC | 39 ms
11,224 KB |
testcase_04 | AC | 27 ms
7,936 KB |
testcase_05 | AC | 40 ms
11,092 KB |
testcase_06 | AC | 100 ms
18,048 KB |
testcase_07 | AC | 87 ms
15,960 KB |
testcase_08 | AC | 45 ms
11,224 KB |
testcase_09 | AC | 24 ms
7,808 KB |
testcase_10 | AC | 11 ms
6,940 KB |
testcase_11 | AC | 97 ms
17,624 KB |
testcase_12 | AC | 83 ms
14,556 KB |
testcase_13 | AC | 82 ms
14,592 KB |
testcase_14 | AC | 72 ms
13,696 KB |
testcase_15 | AC | 41 ms
10,496 KB |
testcase_16 | AC | 7 ms
6,944 KB |
testcase_17 | AC | 44 ms
10,240 KB |
testcase_18 | AC | 91 ms
18,524 KB |
testcase_19 | AC | 85 ms
14,336 KB |
testcase_20 | AC | 83 ms
14,464 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(6, 1) Warning: template 'stopwatch' is implicitly redefined; this is deprecated, add an explicit .redefine pragma [ImplicitTemplateRedefinition] /home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import sequtils,times,lists template times*(n:int,body) = (for _ in 0..<n: body) template `max=`*(x,y) = x = max(x,y) template `min=`*(x,y) = x = min(x,y) template stopwatch(body) = (let t1 = cpuTime();body;echo "TIME:",(cpuTime() - t1) * 1000,"ms") template stopwatch(body) = body proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .} proc scan(): int = while true: let k = getchar_unlocked() if k < '0': break result = 10 * result + k.ord - '0'.ord # 31634 let n = scan() var E : array[100010,SinglyLinkedList[int]] var preHasCutDP : array[100010,int] var preHasNotCutDP : array[100010,int] stopwatch: (n-1).times: let u = scan() - 1 let v = scan() - 1 E[u].prepend(v) E[v].prepend(u) for i in 0..<n: preHasCutDP[i] = -1 preHasNotCutDP[i] = -1 proc solve(preHasCut:bool,x:int,preX:int):int = if preHasCut and preHasCutDP[x] != -1 : return preHasCutDP[x] if not preHasCut and preHasNotCutDP[x] != -1 : return preHasNotCutDP[x] var whenCut = 0 for e in E[x]: if e != preX : whenCut += solve(true,e,x) if preHasCut: var whenNotCut = 1 for e in E[x]: if e != preX : whenNotCut += solve(false,e,x) result = max(whenCut,whenNotCut) preHasCutDP[x] = result preHasNotCutDP[x] = max(whenCut,whenNotCut-1) else: result = whenCut preHasNotCutDP[x] = result stopwatch: echo solve(true,0,-1)