結果
問題 | No.2083 OR Subset |
ユーザー | ygussany |
提出日時 | 2022-09-17 15:04:27 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1,081 ms / 3,000 ms |
コード長 | 887 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 32,000 KB |
実行使用メモリ | 166,400 KB |
最終ジャッジ日時 | 2024-06-01 15:11:49 |
合計ジャッジ時間 | 11,005 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 566 ms
108,672 KB |
testcase_04 | AC | 295 ms
66,048 KB |
testcase_05 | AC | 984 ms
156,672 KB |
testcase_06 | AC | 257 ms
59,648 KB |
testcase_07 | AC | 20 ms
11,008 KB |
testcase_08 | AC | 34 ms
14,976 KB |
testcase_09 | AC | 566 ms
108,032 KB |
testcase_10 | AC | 347 ms
74,624 KB |
testcase_11 | AC | 192 ms
48,128 KB |
testcase_12 | AC | 115 ms
33,280 KB |
testcase_13 | AC | 1,070 ms
165,248 KB |
testcase_14 | AC | 1,047 ms
162,432 KB |
testcase_15 | AC | 1,054 ms
163,200 KB |
testcase_16 | AC | 1,073 ms
165,504 KB |
testcase_17 | AC | 1,074 ms
165,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1,081 ms
166,400 KB |
ソースコード
#include <stdio.h> const int Mod = 998244353; long long pow_mod(int n, long long k) { long long N, ans = 1; for (N = n; k > 0; k >>= 1, N = N * N % Mod) if (k & 1) ans = ans * N % Mod; return ans; } int main() { int N; scanf("%d", &N); int i, j, comb[5001][5001]; for (i = 1, comb[0][0] = 1; i <= N; i++) for (j = 1, comb[i][0] = 1, comb[i][i] = 1; j < i; j++) comb[i][j] = (comb[i-1][j-1] + comb[i-1][j]) % Mod; static int dp[5001][5001], tmp; long long ans = 1; for (j = 1, dp[0][0] = 1; j <= N; j++) dp[0][j] = 0; for (i = 1; i <= N; i++) { tmp = pow_mod(2, i) - i; if (tmp < 0) tmp += Mod; for (j = 0; j < i; j++) dp[i][j] = 0; for (; j <= N; j++) { dp[i][j] = (dp[i-1][j-1] + (long long)i * dp[i][j-1]) % Mod; ans += (long long)dp[i][j] * comb[N][j] % Mod * pow_mod(tmp, N - j) % Mod; } } printf("%lld\n", ans % Mod); fflush(stdout); return 0; }