結果
問題 | No.1354 Sambo's Treasure |
ユーザー | timi |
提出日時 | 2021-01-20 19:59:32 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,227 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 827,388 KB |
最終ジャッジ日時 | 2024-06-06 00:53:31 |
合計ジャッジ時間 | 3,948 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
11,008 KB |
testcase_01 | AC | 32 ms
11,008 KB |
testcase_02 | AC | 39 ms
11,520 KB |
testcase_03 | AC | 30 ms
11,008 KB |
testcase_04 | AC | 30 ms
11,008 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | AC | 29 ms
11,008 KB |
testcase_07 | AC | 29 ms
11,008 KB |
testcase_08 | AC | 29 ms
10,880 KB |
testcase_09 | AC | 29 ms
10,880 KB |
testcase_10 | AC | 28 ms
11,008 KB |
testcase_11 | AC | 29 ms
11,008 KB |
testcase_12 | AC | 28 ms
10,880 KB |
testcase_13 | AC | 28 ms
10,880 KB |
testcase_14 | AC | 34 ms
10,880 KB |
testcase_15 | AC | 28 ms
10,880 KB |
testcase_16 | AC | 29 ms
10,880 KB |
testcase_17 | AC | 29 ms
11,008 KB |
testcase_18 | AC | 30 ms
11,008 KB |
testcase_19 | AC | 29 ms
11,008 KB |
testcase_20 | AC | 31 ms
10,880 KB |
testcase_21 | AC | 30 ms
10,880 KB |
testcase_22 | AC | 29 ms
10,880 KB |
testcase_23 | MLE | - |
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 | -- | - |
ソースコード
N,M,L,K=map(int, input().split()) C,T=[],[] for i in range(M): x,y=map(int, input().split()) C.append((x+y,x,y)) for i in range(L): x,y=map(int, input().split()) T.append((x+y,x,y)) C=sorted(C) T=sorted(T) C.append((2*N+2,N+1,N+1)) E=[[0]*(N+2) for i in range(N+2)] #1:check 2:tiger for a,x,y in T: E[x][y]=2 #print(C) #print(T) dp=[[[0]*(N+3) for w in range(N+3)]for h in range(K+3)] dp[K][0][0]=1 mod=998244353 for i in range(M+1): if i==0: sx,sy=0,0 gx,gy=C[0][1],C[0][2] else: sx,sy=C[i-1][1],C[i-1][2] gx,gy=C[i][1],C[i][2] for k in range(K,-1,-1): for x in range(sx,gx+1): for y in range(sy,gy+1): dp[k][x][y]%=mod if E[x][y]==0: if x+1<=gx: dp[k][x+1][y]+=dp[k][x][y] if y+1<=gy: dp[k][x][y+1]+=dp[k][x][y] else: if k>0: if x+1<=gx: dp[k-1][x+1][y]+=dp[k][x][y] if y+1<=gy: dp[k-1][x][y+1]+=dp[k][x][y] ans=0 for k in range(K+1): ans+=dp[k][N][N] ans%=mod print(ans)