結果
問題 | No.1706 Many Bus Stops (hard) |
ユーザー | harurun |
提出日時 | 2021-09-10 22:50:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 2,235 bytes |
コンパイル時間 | 182 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 63,476 KB |
最終ジャッジ日時 | 2024-07-23 03:31:49 |
合計ジャッジ時間 | 3,456 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,480 KB |
testcase_01 | AC | 41 ms
53,880 KB |
testcase_02 | AC | 47 ms
61,340 KB |
testcase_03 | AC | 47 ms
62,224 KB |
testcase_04 | AC | 48 ms
61,472 KB |
testcase_05 | AC | 46 ms
62,692 KB |
testcase_06 | AC | 47 ms
61,708 KB |
testcase_07 | AC | 47 ms
62,736 KB |
testcase_08 | AC | 47 ms
62,036 KB |
testcase_09 | AC | 47 ms
61,376 KB |
testcase_10 | AC | 46 ms
62,248 KB |
testcase_11 | AC | 48 ms
61,572 KB |
testcase_12 | AC | 49 ms
62,384 KB |
testcase_13 | AC | 47 ms
61,960 KB |
testcase_14 | AC | 47 ms
61,340 KB |
testcase_15 | AC | 46 ms
61,252 KB |
testcase_16 | AC | 47 ms
62,420 KB |
testcase_17 | AC | 47 ms
62,180 KB |
testcase_18 | AC | 46 ms
61,324 KB |
testcase_19 | AC | 46 ms
61,972 KB |
testcase_20 | AC | 47 ms
63,012 KB |
testcase_21 | AC | 46 ms
62,136 KB |
testcase_22 | AC | 46 ms
61,248 KB |
testcase_23 | AC | 45 ms
63,476 KB |
testcase_24 | AC | 47 ms
61,428 KB |
testcase_25 | AC | 46 ms
62,352 KB |
testcase_26 | AC | 48 ms
62,396 KB |
testcase_27 | AC | 47 ms
61,888 KB |
testcase_28 | AC | 48 ms
61,064 KB |
testcase_29 | AC | 48 ms
62,184 KB |
testcase_30 | AC | 47 ms
62,504 KB |
testcase_31 | AC | 48 ms
61,052 KB |
testcase_32 | AC | 46 ms
61,640 KB |
testcase_33 | AC | 49 ms
62,472 KB |
testcase_34 | AC | 46 ms
62,092 KB |
testcase_35 | AC | 47 ms
61,304 KB |
testcase_36 | AC | 46 ms
61,712 KB |
testcase_37 | AC | 49 ms
62,780 KB |
testcase_38 | AC | 47 ms
61,564 KB |
testcase_39 | AC | 47 ms
62,252 KB |
testcase_40 | AC | 47 ms
61,756 KB |
testcase_41 | AC | 47 ms
62,040 KB |
testcase_42 | AC | 48 ms
61,124 KB |
ソースコード
class INPUT: def __init__(self): self._l=open(0).read().split() self._length=len(self._l) self._index=0 return def stream(self,k=1,f=int,f2=False): assert(-1<k) if self._length==self._index or self._length-self._index<k: raise Exception("There is no input!") elif f!=str: if k==0: ret=list(map(f,self._l[self._index:])) self._index=self._length return ret if k==1 and not f2: ret=f(self._l[self._index]) self._index+=1 return ret if k==1 and f2: ret=[f(self._l[self._index])] self._index+=1 return ret ret=[] for _ in [0]*k: ret.append(f(self._l[self._index])) self._index+=1 return ret else: if k==0: ret=list(self._l[self._index:]) self._index=self._length return ret if k==1 and not f2: ret=self._l[self._index] self._index+=1 return ret if k==1 and f2: ret=[self._l[self._index]] self._index+=1 return ret ret=[] for _ in [0]*k: ret.append(self._l[self._index]) self._index+=1 return ret pin=INPUT().stream #pin(number[default:1],f[default:int],f2[default:False]) #if number==0 -> return left all #listを変数で受け取るとき、必ずlistをTrueにすること。 def matrix_mul(A,B,mod): C=[[0]*len(B)for _ in[0]*len(A)] for i in range(len(A)): for k in range(len(B)): for j in range(len(B[0])): C[i][j]=(C[i][j]+A[i][k]*B[k][j])%mod return C def matrix_exp(X,n,mod): Y=[[0]*len(X)for _ in[0]*len(X)] for i in range(len(X)): Y[i][i]=1 while n>0: if n&1: Y=matrix_mul(Y,X,mod) X=matrix_mul(X,X,mod) n>>=1 return Y def calculate_nth(mod,n,A,C): A=matrix_exp(A,n,mod) res=matrix_mul(A,[[1],[0],[C],[0]],mod) return res[2][0] def main(): mod=10**9+7 C,N,M=pin(3) A=[[1,0,0,1],[0,1,C-1,C-2],[C,0,0,0],[0,C,0,0]] ans=calculate_nth(mod,N,A,C) B=pow(pow(C,mod-2,mod),N+1,mod) # A にいる確率 a=ans*B%mod # A にいない確率 b=(1-a)%mod # M台がAに1台もいない確率 c=pow(b,M,mod) # 余事象 d=(1-c)%mod print(d) return main()