結果
問題 | No.695 square1001 and Permutation 4 |
ユーザー | 37zigen |
提出日時 | 2020-05-11 18:00:53 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,964 bytes |
コンパイル時間 | 2,817 ms |
コンパイル使用メモリ | 80,908 KB |
実行使用メモリ | 96,572 KB |
最終ジャッジ日時 | 2024-07-22 19:38:11 |
合計ジャッジ時間 | 15,692 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
54,292 KB |
testcase_01 | AC | 288 ms
56,320 KB |
testcase_02 | AC | 306 ms
67,352 KB |
testcase_03 | AC | 290 ms
67,488 KB |
testcase_04 | AC | 525 ms
67,208 KB |
testcase_05 | AC | 573 ms
67,464 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | AC | 332 ms
58,272 KB |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
ソースコード
import java.math.BigInteger; import java.util.Arrays; import java.util.Scanner; import java.util.concurrent.ConcurrentHashMap; public class Main { public static void main(String[] args) { new Main().run(); } void run() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[] x = new int[m]; for (int i = 0; i < m; ++i) x[i] = sc.nextInt(); dp = new int[(n + 1) / 2]; long mo1 = 17 * 9920467; long mo2 = 592951213; long mo3 = mo1 * mo2; long ans1 = solve(mo1, n, m, x); long ans2 = solve(mo2, n, m, x); long f1 = ans1 % mo1 * inv(mo2, mo1) % mo1 * mo2 % mo3; long f2 = inv(mo1, mo2) % mo2 * (ans2 % mo2 - f1 % mo2 + mo2) % mo2 * mo1 % mo3; System.out.println((f1 + f2) % mo3); } long inv(long a, long mo) { a %= mo; long u=0,v=1,s=mo,t=a; while (t!=0) { long q=s/t; u-=v*q; s-=t*q; s^=t;t^=s;s^=t; u^=v;v^=u;u^=v; } if (u<0) u+=mo; return u; } int[] dp; long solve(long mo, int n, int m, int[] x) { Arrays.fill(dp, 0); dp[0] = 1; for (int i = 0; i < dp.length; ++i) { for (int j = 0; j < x.length; ++j) { if (i + x[j] >= dp.length) continue; dp[i + x[j]] = (int) ((dp[i + x[j]] + dp[i]) % mo); } } long ret = 0; for (int i = 0; i < dp.length; ++i) { for (int j = 0; j < m; ++j) { if (x[j] + i < dp.length || (n - 1) - x[j] - i < 0) continue; ret = (ret + (long) dp[(n - 1) - x[j] - i] * dp[i] % mo) % mo; } } return ret; } class BIT { int n; int[] a; public BIT(int n_) { n = n_; a = new int[n + 1]; } void add(int k, int add) { ++k; while (k < a.length) { a[k] += add; k += k & -k; } } int sum(int k) { ++k; int ret = 0; while (k > 0) { ret += a[k]; k -= k & -k; } return ret; } int sum(int a, int b) { return sum(b - 1) - sum(a - 1); } } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }