結果
問題 | No.1426 Got a Covered OR |
ユーザー | trineutron |
提出日時 | 2021-03-12 22:16:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,432 bytes |
コンパイル時間 | 2,234 ms |
コンパイル使用メモリ | 206,924 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-14 12:45:39 |
合計ジャッジ時間 | 6,154 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 12 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using mint = modint1000000007; vector<mint> fact, inv; void init(int n) { fact.push_back(1); inv.push_back(1); for (int i = 0; i < n; i++) { fact.push_back(fact.back() * (i + 1)); inv.push_back(1 / fact.back()); } } mint ncr(int n, int r) { if (r < 0 or n - r < 0) { return 0; } return fact[n] * inv[r] * inv[n - r]; } mint calc(int n, int pc0, int pc) { if (n == 0) { return pc0 == pc; } mint res = 0; for (int i = pc0; i <= pc; i++) { res += calc(n - 1, i, pc) * (1 << pc0) * ncr(pc - pc0, i - pc0); if (i == pc0) { res -= calc(n - 1, i, pc); } } return res; } int main(int argc, char const *argv[]) { int n; cin >> n; vector<int> b(n + 1); for (int i = 0; i < n; i++) { cin >> b.at(i + 1); } init(30); mint ans = 1; int last = 0; for (int i = 0; i < n; i++) { if (b.at(i + 1) != -1) { if ((b.at(last) & b.at(i + 1)) != b.at(last)) { ans = 0; break; } ans *= calc(i + 1 - last, __builtin_popcount(b.at(last)), __builtin_popcount(b.at(i + 1))); last = i + 1; } } cout << ans.val() << endl; return 0; }