結果

問題 No.709 優勝可能性
ユーザー ikdikd
提出日時 2018-07-15 15:22:59
言語 Nim
(2.0.2)
結果
AC  
実行時間 368 ms / 3,500 ms
コード長 615 bytes
コンパイル時間 4,629 ms
コンパイル使用メモリ 65,828 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-07-01 03:11:15
合計ジャッジ時間 8,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 224 ms
6,940 KB
testcase_11 AC 177 ms
6,940 KB
testcase_12 AC 274 ms
6,944 KB
testcase_13 AC 274 ms
6,944 KB
testcase_14 AC 278 ms
6,944 KB
testcase_15 AC 280 ms
6,940 KB
testcase_16 AC 265 ms
6,944 KB
testcase_17 AC 278 ms
15,488 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 368 ms
6,940 KB
testcase_21 AC 363 ms
6,940 KB
testcase_22 AC 2 ms
6,948 KB
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils
var 
  args=stdin.readLine.split.map(parseInt)
  (n, m)=(args[0], args[1])

var
  deg=newSeq[int](n)
  stack=newSeqWith(m, newSeq[int]())
  top=newSeq[int](m)
  cnt=0

for i in 0..<n:
  var
    params=stdin.readLine.split.map(parseInt)
    ad=false
  for j, val in params:
    if top[j]<val:
      while stack[j].len>0:
        var k=stack[j].pop
        deg[k]-=1
        if deg[k]==0:
          cnt-=1
      stack[j].add(i)
      deg[i]+=1
      top[j]=val
      ad=true
    elif top[j]==val:
      stack[j].add(i)
      deg[i]+=1
      ad=true
    # else:
  if ad:
    cnt+=1
  echo cnt
0