結果
問題 | No.1141 田グリッド |
ユーザー | persimmon-persimmon |
提出日時 | 2021-06-17 11:31:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,108 bytes |
コンパイル時間 | 430 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 100,480 KB |
最終ジャッジ日時 | 2024-06-10 19:04:15 |
合計ジャッジ時間 | 8,159 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
def main0(h,w,a,q,rc): mod=10**9+7 ans=[] for r,c in rc: r,c=r-1,c-1 tmp=1 for i in range(h): if i==r:continue for j in range(w): if j==c:continue tmp*=a[i][j] tmp%=mod ans.append(tmp) return ans def main1(h,w,a,q,rc): mod=10**9+7 mat=[] mat.append([1]*(w+1)) ary0=[] ary0.append([0]*(w+1)) for i in range(h): tmp=[1] tmp0=[0] for j in range(w): if a[i][j]: tmp.append(tmp[-1]*a[i][j]%mod) tmp0.append(tmp0[-1]) else: tmp.append(tmp[-1]) tmp0.append(tmp0[-1]+1) mat.append(tmp) ary0.append(tmp0) for j in range(w+1): for i in range(h): mat[i+1][j]*=mat[i][j] mat[i+1][j]%=mod ary0[i+1][j]+=ary0[i][j] ans=[] #for x in mat:print(x) for r,c in rc: r,c=r-1,c-1 # 0含むかどうかチェック t=ary0[r][c] t+=ary0[-1][c]-ary0[r+1][c] t+=ary0[r][-1]-ary0[r][c+1] t+=ary0[-1][-1]+ary0[r+1][c+1]-ary0[r+1][-1]-ary0[-1][c+1] if t: ans.append(0) continue tmp0=mat[r][c] # 左上 tmp1=mat[-1][c]*pow(mat[r+1][c],mod-2,mod)%mod # 左下 tmp2=mat[r][-1]*pow(mat[r][c+1],mod-2,mod)%mod # 右上 tmp3=mat[-1][-1]*mat[r+1][c+1]%mod # 右下 tmp3=tmp3*pow(mat[r+1][-1],mod-2,mod)*pow(mat[-1][c+1],mod-2,mod)%mod # 右下 ans.append(tmp0*tmp1*tmp2*tmp3%mod) return ans if __name__=='__main__': h,w=map(int,input().split()) a=[list(map(int,input().split())) for _ in range(h)] q=int(input()) rc=[list(map(int,input().split())) for _ in range(q)] #ret0=main0(h,w,a,q,rc) #print(ret0) ret1=main1(h,w,a,q,rc) print(ret1) from random import randint if __name__=='__main__1': for _ in range(100): h=randint(2,6) w=randint(2,6) a=[[randint(0,6) for _ in range(w)] for _ in range(h)] q=randint(2,6) rc=[[randint(1,h),randint(1,w)]for _ in range(q)] ret0=main0(h,w,a,q,rc) ret1=main1(h,w,a,q,rc) if ret0!=ret1: print(h,w) for x in a:print(*x) print(q) for x in rc:print(*x) print(ret0) print(ret1) break