結果
問題 | No.759 悪くない忘年会にしような! |
ユーザー | maspy |
提出日時 | 2020-03-18 23:02:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 758 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 860,592 KB |
最終ジャッジ日時 | 2024-05-08 02:50:35 |
合計ジャッジ時間 | 8,078 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
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 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
ソースコード
#!/usr/bin/env python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import numpy as np N = int(readline()) PTR = np.array(read().split(), np.int64) P = PTR[::3] T = PTR[1::3] R = PTR[2::3] INF = 10 ** 4 + 100 dp = np.zeros((10001, 10001), np.int32) for p, t, r in zip(P.tolist(), T.tolist(), R.tolist()): if dp[p, t] < r: dp[p, t] = r if p: if dp[p - 1, t] < r + 1: dp[p - 1, t] = r + 1 if t: if dp[p, t - 1] < r + 1: dp[p, t - 1] = r + 1 dp = dp[::-1, ::-1] np.maximum.accumulate(dp, axis=0, out=dp) np.maximum.accumulate(dp, axis=1, out=dp) dp = dp[::-1, ::-1] ok = dp[P, T] <= R print('\n'.join((ok + 1).astype(str)))