結果
問題 | No.2159 Filling 4x4 array |
ユーザー | Kude |
提出日時 | 2022-12-10 09:59:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,459 ms / 5,000 ms |
コード長 | 2,011 bytes |
コンパイル時間 | 2,219 ms |
コンパイル使用メモリ | 227,008 KB |
実行使用メモリ | 70,400 KB |
最終ジャッジ日時 | 2024-10-14 23:31:58 |
合計ジャッジ時間 | 73,161 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,331 ms
70,400 KB |
testcase_01 | AC | 1,355 ms
70,272 KB |
testcase_02 | AC | 1,344 ms
70,272 KB |
testcase_03 | AC | 1,349 ms
70,272 KB |
testcase_04 | AC | 1,344 ms
70,144 KB |
testcase_05 | AC | 1,368 ms
70,272 KB |
testcase_06 | AC | 1,349 ms
70,144 KB |
testcase_07 | AC | 1,329 ms
70,400 KB |
testcase_08 | AC | 1,340 ms
70,400 KB |
testcase_09 | AC | 1,349 ms
70,400 KB |
testcase_10 | AC | 1,351 ms
70,272 KB |
testcase_11 | AC | 1,363 ms
70,272 KB |
testcase_12 | AC | 1,383 ms
70,272 KB |
testcase_13 | AC | 1,459 ms
70,144 KB |
testcase_14 | AC | 1,378 ms
70,272 KB |
testcase_15 | AC | 1,392 ms
70,272 KB |
testcase_16 | AC | 1,352 ms
70,272 KB |
testcase_17 | AC | 1,343 ms
70,272 KB |
testcase_18 | AC | 1,356 ms
70,272 KB |
testcase_19 | AC | 1,363 ms
70,400 KB |
testcase_20 | AC | 1,340 ms
70,400 KB |
testcase_21 | AC | 1,389 ms
70,400 KB |
testcase_22 | AC | 1,359 ms
70,272 KB |
testcase_23 | AC | 1,357 ms
70,272 KB |
testcase_24 | AC | 1,328 ms
70,272 KB |
testcase_25 | AC | 1,365 ms
70,272 KB |
testcase_26 | AC | 1,348 ms
70,272 KB |
testcase_27 | AC | 1,374 ms
70,272 KB |
testcase_28 | AC | 1,352 ms
70,272 KB |
testcase_29 | AC | 1,376 ms
70,272 KB |
testcase_30 | AC | 1,355 ms
70,400 KB |
testcase_31 | AC | 1,361 ms
70,400 KB |
testcase_32 | AC | 1,357 ms
70,272 KB |
testcase_33 | AC | 1,355 ms
70,272 KB |
testcase_34 | AC | 1,362 ms
70,272 KB |
testcase_35 | AC | 1,368 ms
70,272 KB |
testcase_36 | AC | 1,348 ms
70,272 KB |
testcase_37 | AC | 1,368 ms
70,400 KB |
testcase_38 | AC | 1,384 ms
70,400 KB |
testcase_39 | AC | 1,388 ms
70,272 KB |
testcase_40 | AC | 1,374 ms
70,272 KB |
testcase_41 | AC | 1,367 ms
70,400 KB |
testcase_42 | AC | 1,359 ms
70,272 KB |
testcase_43 | AC | 1,376 ms
70,272 KB |
testcase_44 | AC | 1,374 ms
70,144 KB |
testcase_45 | AC | 1,365 ms
70,272 KB |
testcase_46 | AC | 1,371 ms
70,400 KB |
testcase_47 | AC | 1,387 ms
70,272 KB |
testcase_48 | AC | 1,390 ms
70,400 KB |
testcase_49 | AC | 1,386 ms
70,272 KB |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic pop using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using mint = modint998244353; mint f[1 << 2 * 8], g[1 << 2 * 8]; int take_parity_bits[1 << 2 * 8]; int expand_to_3bits[1 << 2 * 8]; int section_to_2bits[1 << 3 * 8]; VI trans[1 << 8]; } int main() { ios::sync_with_stdio(false); cin.tie(0); rep(s, 1 << 2 * 8) { int t = 0; rep(i, 8) t |= (s >> 2 * i & 1) << i; take_parity_bits[s] = t; } rep(s, 1 << 2 * 8) { int t = 0; rep(i, 8) t |= (s >> 2 * i & 3) << 3 * i; expand_to_3bits[s] = t; } rep(s, 1 << 3 * 8) { int t = 0; rep(i, 8) t |= (s >> 3 * i + 1 & 3) << 2 * i; section_to_2bits[s] = t; } rep(s, 1 << 16) { int t = 0; int add = 0; rep(e, 16) if (s >> e & 1) { for(int p: {e / 4, e % 4 + 4}) { t ^= 1 << p; add += 1 << 3 * p; } } trans[t].emplace_back(add); } int d[8]; rep(i, 8) cin >> d[i], d[i] -= 4; f[0] = 1; rep(_, 30) { int dbit = 0; rep(i, 8) dbit |= (d[i] & 1) << i; rep(s, 1 << 2 * 8) g[s] = 0; rep(s, 1 << 2 * 8) { mint v = f[s]; int es = expand_to_3bits[s]; for(int add: trans[take_parity_bits[s] ^ dbit]) { g[section_to_2bits[es + add]] += v; } } rep(i, 1 << 2 * 8) f[i] = g[i]; rep(i, 8) d[i] /= 2; } cout << f[0].val() << '\n'; }