結果
問題 | No.1426 Got a Covered OR |
ユーザー | k |
提出日時 | 2021-04-17 18:14:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 1,368 bytes |
コンパイル時間 | 2,312 ms |
コンパイル使用メモリ | 203,064 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 01:21:17 |
合計ジャッジ時間 | 3,317 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 6 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 11 ms
5,376 KB |
testcase_19 | AC | 11 ms
5,376 KB |
testcase_20 | AC | 5 ms
5,376 KB |
testcase_21 | AC | 8 ms
5,376 KB |
testcase_22 | AC | 9 ms
5,376 KB |
testcase_23 | AC | 19 ms
5,376 KB |
testcase_24 | AC | 10 ms
5,376 KB |
testcase_25 | AC | 16 ms
5,376 KB |
testcase_26 | AC | 16 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long MOD = 1e9 + 7; long long comb[32][32]; void init() { for (int i = 0; i < 32; i++) { comb[i][0] = comb[i][i] = 1; for (int j = 1; j < i; j++) comb[i][j] = (comb[i-1][j-1] + comb[i-1][j]) % MOD; } } long long modpow(long long x, long long p, long long mod) { long long ret = 1; while (p) { if (p & 1) ret = ret * x % mod; x = x * x % mod; p >>= 1; } return ret; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); init(); int n; cin >> n; vector<int> b(n+1); for (int i = 1; i <= n; i++) cin >> b[i]; long long ret = 1; for (int i = 0, j = 1; i < n; j++) { if (b[j] != -1) { if (b[i] & ~b[j]) { ret = 0; break; } int x = __builtin_popcountll(b[i]); int y = __builtin_popcountll(b[i]^b[j]); int m = j - i; long long tmp = 0; for (int k = 0; k <= y; k++) { long long z = modpow(2, x + y - k, MOD) - 1; if (z < 0) z += MOD; if (k % 2 == 0) tmp += comb[y][k] * modpow(z, m, MOD) % MOD; else tmp -= comb[y][k] * modpow(z, m, MOD) % MOD; tmp %= MOD; if (tmp < 0) tmp += MOD; } ret = ret * tmp % MOD; i = j; } } cout << ret << endl; return 0; }