結果

問題 No.2598 Kadomatsu on Tree
ユーザー 👑 seekworserseekworser
提出日時 2024-01-03 04:49:58
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 3,684 ms
コンパイル使用メモリ 66,260 KB
実行使用メモリ 53,912 KB
最終ジャッジ日時 2024-09-27 18:23:35
合計ジャッジ時間 16,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 5 ms
6,944 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 5 ms
6,944 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 276 ms
26,452 KB
testcase_24 AC 275 ms
26,764 KB
testcase_25 AC 267 ms
26,548 KB
testcase_26 AC 266 ms
26,580 KB
testcase_27 AC 275 ms
26,600 KB
testcase_28 AC 279 ms
26,792 KB
testcase_29 AC 280 ms
26,904 KB
testcase_30 AC 280 ms
26,452 KB
testcase_31 AC 274 ms
26,788 KB
testcase_32 AC 278 ms
26,612 KB
testcase_33 AC 274 ms
27,024 KB
testcase_34 AC 265 ms
26,396 KB
testcase_35 AC 281 ms
27,008 KB
testcase_36 AC 281 ms
26,972 KB
testcase_37 AC 285 ms
26,952 KB
testcase_38 AC 289 ms
27,040 KB
testcase_39 AC 278 ms
26,936 KB
testcase_40 AC 282 ms
27,048 KB
testcase_41 AC 288 ms
27,064 KB
testcase_42 AC 283 ms
27,016 KB
testcase_43 AC 282 ms
27,004 KB
testcase_44 AC 281 ms
27,048 KB
testcase_45 AC 283 ms
27,000 KB
testcase_46 AC 283 ms
27,068 KB
testcase_47 AC 283 ms
26,972 KB
testcase_48 WA -
testcase_49 AC 24 ms
7,808 KB
testcase_50 AC 192 ms
35,024 KB
testcase_51 AC 50 ms
14,208 KB
testcase_52 WA -
testcase_53 AC 101 ms
13,824 KB
testcase_54 AC 84 ms
11,520 KB
testcase_55 AC 32 ms
6,940 KB
testcase_56 AC 158 ms
19,528 KB
testcase_57 AC 57 ms
8,576 KB
testcase_58 AC 267 ms
26,632 KB
testcase_59 AC 271 ms
26,816 KB
testcase_60 AC 289 ms
46,788 KB
testcase_61 AC 293 ms
49,956 KB
testcase_62 AC 281 ms
44,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(24, 8) Warning: Number of spaces around '!=' is not consistent [Spacing]

ソースコード

diff #

import strutils,sequtils
var m=998244353
var n=stdin.readLine.parseint
var g=newSeqWith(n,newSeq[int](0))
for i in 0..<n-1:
 var u=stdin.readline.split.map(parseint).mapit(it-1)
 g[u[0]].add(u[1])
 g[u[1]].add(u[0])
var a=stdin.readLine.split.map(parseInt)
var ans=0
proc dfs(x,par:int):int=
 result=1
 var tl,tu=0
 for y in g[x]:
  if y==par: continue
  var sz=dfs(y,x)
  result+=sz
  if a[y]<a[x]:
   ans+=(tl*sz)mod m
   tl+=sz
  if a[x]<a[y]:
   ans+=(tu*sz)mod m
   tu+=sz
 if par!= -1:
  if a[par]<a[x]: ans+=(tl*(n-result))mod m
  if a[x]<a[par]: ans+=(tu*(n-result))mod m
  ans=ans mod m
discard dfs(0,-1)
echo ans
0