結果

問題 No.1668 Grayscale
ユーザー harurunharurun
提出日時 2021-09-03 22:44:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,316 ms / 4,000 ms
コード長 595 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 224,788 KB
最終ジャッジ日時 2024-12-15 15:50:33
合計ジャッジ時間 5,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 37 ms
52,120 KB
testcase_02 AC 34 ms
51,756 KB
testcase_03 AC 34 ms
52,036 KB
testcase_04 AC 33 ms
52,368 KB
testcase_05 AC 33 ms
52,040 KB
testcase_06 AC 444 ms
224,788 KB
testcase_07 AC 404 ms
224,380 KB
testcase_08 AC 266 ms
154,856 KB
testcase_09 AC 1,316 ms
220,796 KB
testcase_10 AC 549 ms
128,056 KB
testcase_11 AC 45 ms
60,800 KB
testcase_12 AC 57 ms
68,224 KB
testcase_13 AC 84 ms
80,744 KB
testcase_14 AC 207 ms
102,272 KB
testcase_15 AC 120 ms
86,688 KB
testcase_16 AC 111 ms
82,964 KB
testcase_17 AC 85 ms
81,536 KB
testcase_18 AC 35 ms
51,840 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 52 ms
65,664 KB
testcase_21 AC 59 ms
69,504 KB
testcase_22 AC 34 ms
52,352 KB
testcase_23 AC 35 ms
51,584 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