結果
問題 | No.1693 Invasion |
ユーザー | srjywrdnprkt |
提出日時 | 2023-01-16 18:47:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 1,440 bytes |
コンパイル時間 | 1,230 ms |
コンパイル使用メモリ | 112,336 KB |
実行使用メモリ | 98,852 KB |
最終ジャッジ日時 | 2024-06-10 01:06:41 |
合計ジャッジ時間 | 2,842 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
18,932 KB |
testcase_01 | AC | 19 ms
18,816 KB |
testcase_02 | AC | 18 ms
18,892 KB |
testcase_03 | AC | 17 ms
19,052 KB |
testcase_04 | AC | 18 ms
18,816 KB |
testcase_05 | AC | 18 ms
19,040 KB |
testcase_06 | AC | 19 ms
18,944 KB |
testcase_07 | AC | 18 ms
18,976 KB |
testcase_08 | AC | 18 ms
18,944 KB |
testcase_09 | AC | 66 ms
73,584 KB |
testcase_10 | AC | 42 ms
44,140 KB |
testcase_11 | AC | 27 ms
26,752 KB |
testcase_12 | AC | 46 ms
50,044 KB |
testcase_13 | AC | 33 ms
34,452 KB |
testcase_14 | AC | 36 ms
37,888 KB |
testcase_15 | AC | 29 ms
30,208 KB |
testcase_16 | AC | 48 ms
51,328 KB |
testcase_17 | AC | 18 ms
18,788 KB |
testcase_18 | AC | 91 ms
98,852 KB |
testcase_19 | AC | 21 ms
21,148 KB |
testcase_20 | AC | 18 ms
18,944 KB |
testcase_21 | AC | 84 ms
92,928 KB |
testcase_22 | AC | 83 ms
92,204 KB |
testcase_23 | AC | 85 ms
94,188 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> using namespace std; const long long modc=998244353, MAX=1000000; vector<long long> f, finv; long long inv(long long x){ long long ans = 1, e = modc-2; x %= modc; while (e > 0){ if ((e & 1LL)) ans = (ans * x) % modc; e = e >> 1LL; x = (x*x) % modc; } return ans; } void init(){ f.resize(MAX+1); finv.resize(MAX+1); f[0] = 1; for (int i=1; i<=MAX; i++) f[i] = (f[i-1]*i) % modc; finv[MAX] = inv(f[MAX]); for (int i=MAX-1; i>=0; i--) finv[i] = (finv[i+1] * (i+1)) % modc; } long long C(long long n, long long k){ if (n < k || k < 0) return 0; return (((f[n] * finv[k]) % modc) * finv[n-k]) % modc; } int main(){ init(); long long N, M, ans=0; cin >> N >> M; vector<long long> A(N+1); for (int i=0; i<N; i++) cin >> A[i+1]; vector<vector<long long>> dp(N+1, vector<long long>(M+1, 1e18)); dp[0][0] = 0; for (int i=1; i<=N; i++){ for (int j=0; j<=M; j++){ dp[i][j] = min(dp[i][j], dp[i-1][j]); if (j-A[i]>=0) dp[i][j] = min(dp[i][j], dp[i][j-A[i]]+1); } } for (long long i=0; i<=M; i++){ ans += C(M-dp[N][i], i-dp[N][i]); ans %= modc; } cout << ans << endl; return 0; }