結果
問題 | No.866 レベルKの正方形 |
ユーザー | maspy |
提出日時 | 2020-03-19 22:24:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 944 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 485,328 KB |
最終ジャッジ日時 | 2024-05-08 03:30:33 |
合計ジャッジ時間 | 20,941 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 497 ms
44,520 KB |
testcase_01 | AC | 474 ms
44,012 KB |
testcase_02 | AC | 477 ms
44,396 KB |
testcase_03 | AC | 477 ms
44,452 KB |
testcase_04 | AC | 481 ms
44,392 KB |
testcase_05 | AC | 480 ms
44,264 KB |
testcase_06 | AC | 491 ms
44,512 KB |
testcase_07 | AC | 475 ms
44,400 KB |
testcase_08 | AC | 5,399 ms
485,328 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#!/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] def calc_alphabet(a): INF = np.int32(10 ** 5) 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) high = dp[K] low = dp[K - 1] for n in range(H): np.minimum(high[n, n:], n + 1, out=high[n, n:]) for n in range(W): np.minimum(high[n:, n], n + 1, out=high[n:, n]) x = high - low answer = np.maximum(x, 0).sum() print(answer)