結果
問題 | No.612 Move on grid |
ユーザー | Navier_Boltzmann |
提出日時 | 2021-12-30 20:59:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,346 bytes |
コンパイル時間 | 253 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 44,872 KB |
最終ジャッジ日時 | 2024-10-06 20:15:24 |
合計ジャッジ時間 | 12,921 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 530 ms
43,920 KB |
testcase_01 | AC | 534 ms
44,520 KB |
testcase_02 | AC | 535 ms
44,056 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 539 ms
44,232 KB |
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 | - |
ソースコード
import numpy as np def convolve(f, g): tf = np.array(f, np.int64) tg = np.array(g, np.int64) fft_len = 1 while 2 * fft_len < len(tf) + len(tg) - 1: fft_len *= 2 fft_len *= 2 # フーリエ変換 Ff = np.fft.rfft(tf, fft_len) Fg = np.fft.rfft(tg, fft_len) # 各点積 Fh = Ff * Fg # フーリエ逆変換 h = np.fft.irfft(Fh, fft_len) # 小数になっているので、整数にまるめる h = np.rint(h).astype(np.int64) return h[:len(f) + len(g) - 1] def convolve2(f,g,p): f1,f2 = np.divmod(f,1<<15) g1,g2 = np.divmod(g,1<<15) a = convolve(f1,g1)%p c = convolve(f2,g2)%p b = (convolve(f1+f2,g1+g2) - a - c)%p h = (a<<30) + (b<<15) + c return h%p def convolve_pow(f,n,p): nbit = list(str(bin(n))[2:]) nbit = [int(i) for i in nbit] N = len(f) C = [1] + [0]*(N-1) B = f for i in range(len(nbit)): if nbit[-1-i] == 1: C = convolve2(C,B,p) B = convolve2(B,B,p) return C T = int(input()) a,b,c,d,e = map(int,input().split()) a = abs(a) b = abs(b) c = abs(c) mod = 10**9 + 7 M = max(a,b,c) X = [0]*(2*M+1) X[M+a] += 1 X[M-a] += 1 X[M+b] += 1 X[M-b] += 1 X[M+c] += 1 X[M-c] += 1 print(sum(convolve_pow(X,T,mod)[max(d+M*T,0):e+M*T+1]))