結果

問題 No.1668 Grayscale
ユーザー harurunharurun
提出日時 2021-09-03 22:44:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,344 ms / 4,000 ms
コード長 595 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 224,704 KB
最終ジャッジ日時 2024-05-09 05:47:46
合計ジャッジ時間 6,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 474 ms
224,704 KB
testcase_07 AC 453 ms
224,200 KB
testcase_08 AC 305 ms
155,008 KB
testcase_09 AC 1,344 ms
221,096 KB
testcase_10 AC 632 ms
128,368 KB
testcase_11 AC 50 ms
61,056 KB
testcase_12 AC 65 ms
68,736 KB
testcase_13 AC 98 ms
80,644 KB
testcase_14 AC 233 ms
102,528 KB
testcase_15 AC 147 ms
86,912 KB
testcase_16 AC 132 ms
82,500 KB
testcase_17 AC 95 ms
81,476 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 58 ms
65,920 KB
testcase_21 AC 67 ms
69,376 KB
testcase_22 AC 40 ms
52,352 KB
testcase_23 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
pin=stdin.readline

def main():
  H,W,N=map(int,pin().split())
  C=[list(map(int,pin().split()))for _ in[0]*H]
  d=[[]for _ in[0]*N]
  for i in range(H):
    for j in range(W):
      C[i][j]-=1
      d[C[i][j]].append((i,j))
  ans=1
  start=0
  around=((1,0),(0,1),(-1,0),(0,-1))
  for i in range(N):
    flag=True
    for x,y in d[i]:
      for dx,dy in around:
        if 0<=x+dx<H and 0<=y+dy<W and start<=C[x+dx][y+dy]<C[x][y]:
          ans+=1
          flag=False
          start=C[x][y]
          break
      if not flag:
        break
  print(ans)
  return

main()
0