結果
問題 | No.866 レベルKの正方形 |
ユーザー | maspy |
提出日時 | 2020-03-19 22:28:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 986 bytes |
コンパイル時間 | 388 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 501,112 KB |
最終ジャッジ日時 | 2024-05-08 03:33:15 |
合計ジャッジ時間 | 13,998 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 484 ms
43,908 KB |
testcase_01 | AC | 492 ms
44,420 KB |
testcase_02 | AC | 478 ms
44,284 KB |
testcase_03 | AC | 490 ms
44,280 KB |
testcase_04 | AC | 489 ms
44,284 KB |
testcase_05 | AC | 489 ms
44,028 KB |
testcase_06 | AC | 483 ms
44,036 KB |
testcase_07 | AC | 482 ms
44,288 KB |
testcase_08 | AC | 5,285 ms
485,152 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 5,734 ms
485,672 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 5,331 ms
485,560 KB |
testcase_13 | AC | 5,821 ms
485,484 KB |
testcase_14 | AC | 5,911 ms
501,112 KB |
testcase_15 | AC | 5,998 ms
485,344 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | AC | 5,747 ms
485,384 KB |
testcase_22 | AC | 502 ms
44,412 KB |
testcase_23 | AC | 493 ms
44,416 KB |
testcase_24 | AC | 498 ms
44,292 KB |
ソースコード
#!/usr/bin/ python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import numpy as np H, W, K = map(int, readline().split()) C = np.frombuffer(read(), 'S1').reshape(H, -1)[:, :W] INF = np.int32(10 ** 5) def calc_alphabet(a): dp = (C != a) * INF for n in range(1, H): np.minimum(dp[n - 1] + 1, dp[n], out=dp[n]) for n in range(1, W): np.minimum(dp[:, n - 1] + 1, dp[:, n], out=dp[:, n]) np.minimum(dp[:-1, n - 1] + 1, dp[1:, n], out=dp[1:, n]) return dp dp = np.empty((26, H, W), np.int32) for i in range(26): a = chr(ord('a') + i).encode() dp[i] = calc_alphabet(a) dp.sort(axis=0) low = dp[K - 1] if K == 26: high = np.full_like(low, INF) else: high = dp[K] for n in range(min(H, W)): np.minimum(high[n, n:], n + 1, out=high[n, n:]) np.minimum(high[n:, n], n + 1, out=high[n:, n]) x = high - low answer = np.maximum(x, 0).sum() print(answer)