結果
問題 | No.1710 Minimum OR is X |
ユーザー | kakel-san |
提出日時 | 2024-01-24 23:47:03 |
言語 | C# (.NET 8.0.203) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,976 bytes |
コンパイル時間 | 8,145 ms |
コンパイル使用メモリ | 166,600 KB |
実行使用メモリ | 185,336 KB |
最終ジャッジ日時 | 2024-09-28 07:11:46 |
合計ジャッジ時間 | 32,084 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
30,080 KB |
testcase_01 | AC | 54 ms
30,072 KB |
testcase_02 | AC | 496 ms
30,848 KB |
testcase_03 | AC | 53 ms
30,072 KB |
testcase_04 | AC | 54 ms
29,952 KB |
testcase_05 | AC | 53 ms
30,080 KB |
testcase_06 | AC | 52 ms
29,952 KB |
testcase_07 | AC | 52 ms
29,952 KB |
testcase_08 | AC | 1,015 ms
31,232 KB |
testcase_09 | AC | 758 ms
31,104 KB |
testcase_10 | AC | 1,870 ms
31,096 KB |
testcase_11 | AC | 1,655 ms
31,096 KB |
testcase_12 | AC | 955 ms
30,848 KB |
testcase_13 | AC | 874 ms
31,224 KB |
testcase_14 | AC | 949 ms
31,104 KB |
testcase_15 | AC | 519 ms
30,848 KB |
testcase_16 | AC | 721 ms
30,976 KB |
testcase_17 | AC | 1,034 ms
30,968 KB |
testcase_18 | AC | 1,991 ms
31,232 KB |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | AC | 1,978 ms
31,360 KB |
testcase_22 | AC | 1,800 ms
31,360 KB |
testcase_23 | AC | 55 ms
30,208 KB |
testcase_24 | AC | 52 ms
30,208 KB |
testcase_25 | AC | 264 ms
30,720 KB |
testcase_26 | AC | 213 ms
30,848 KB |
testcase_27 | AC | 63 ms
30,848 KB |
testcase_28 | AC | 103 ms
30,840 KB |
testcase_29 | AC | 77 ms
30,720 KB |
testcase_30 | AC | 155 ms
30,720 KB |
testcase_31 | AC | 61 ms
30,720 KB |
testcase_32 | AC | 101 ms
185,336 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (85 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray(); static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m, k) = (c[0], c[1], c[2]); var x = ReadLine(); var mod = 998_244_353; var ans = CountX(n, m, k, x, mod); if (x.Any(c => c == '0')) { var x2 = x.ToCharArray(); for (var i = x2.Length - 1; i >= 0; --i) { if (x2[i] == '0') { x2[i] = '1'; break; } else { x2[i] = '0'; } } ans = (ans + mod - CountX(n, m, k, string.Concat(x2), mod)) % mod; } WriteLine(ans); } static long CountX(int n, int m, int k, string x, int mod) { var dp = new long[m + 1, n + 1]; dp[0, n] = 1; var ncr = new NCR(n + 1, mod); for (var i = 0; i < m; ++i) for (var j = 0; j <= n; ++j) { if (x[i] == '0') { for (var one = 0; one <= j; ++one) dp[i + 1, j - one] = (dp[i + 1, j - one] + dp[i, j] * ncr.Calc(j, one) % mod * ncr.Exp(2, n - j) % mod) % mod; } else { for (var zero = 0; zero <= j && zero < k; ++zero) dp[i + 1, j] = (dp[i + 1, j] + dp[i, j] * ncr.Calc(j, zero) % mod * ncr.Exp(2, n - j) % mod) % mod; } } var ans = 0L; for (var i = 0; i <= n; ++i) ans = (ans + dp[m, i]) % mod; return ans; } class NCR { int[] facts; int[] revFacts; int mod; public NCR(int n, int mod) { facts = new int[n + 1]; revFacts = new int[n + 1]; this.mod = mod; facts[0] = 1; var tmp = 1L; for (var i = 1; i <= n; ++i) { tmp = tmp * i % mod; facts[i] = (int)tmp; } tmp = Exp(facts[n], mod - 2); revFacts[n] = (int)tmp; for (var i = n; i > 1; --i) { tmp = tmp * i % mod; revFacts[i - 1] = (int)tmp; } revFacts[0] = 1; } public long Exp(long n, long k) { n = n % mod; if (k == 0) return 1; if (k == 1) return n; var half = Exp(n, k / 2); var result = half * half % mod; return ((k % 2) == 0) ? result : (result * n % mod); } public long Calc(int n, int r) { return (long)facts[n] * revFacts[r] % mod * revFacts[n - r] % mod; } /// <summary>nが大きくrが小さい場合の計算</summary> public long Calc2(int n, int r) { var tmp = 1L; for (var i = 0; i < r; ++i) { tmp = tmp * (n - i) % mod; } return tmp * revFacts[r] % mod; } public long NPR(int n, int r) { return (long)facts[n] * revFacts[r] % mod; } public long Fact(int n) { return facts[n]; } public long RevFact(int n) { return revFacts[n]; } public long Inverse(int n) { return (long)revFacts[n] * facts[n - 1] % mod; } } }