結果
問題 | No.2432 Flip and Move |
ユーザー | shobonvip |
提出日時 | 2023-08-18 23:19:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,729 bytes |
コンパイル時間 | 5,146 ms |
コンパイル使用メモリ | 284,892 KB |
実行使用メモリ | 818,176 KB |
最終ジャッジ日時 | 2024-11-28 10:19:28 |
合計ジャッジ時間 | 51,952 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | AC | 340 ms
213,860 KB |
testcase_28 | AC | 152 ms
91,136 KB |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | AC | 361 ms
251,648 KB |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | AC | 6 ms
6,688 KB |
testcase_37 | AC | 3 ms
6,688 KB |
testcase_38 | AC | 4 ms
6,692 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; //* ATCODER #include<atcoder/all> using namespace atcoder; typedef modint998244353 mint; //*/ /* BOOST MULTIPRECISION #include<boost/multiprecision/cpp_int.hpp> using namespace boost::multiprecision; //*/ typedef long long ll; #define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++) #define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--) template <typename T> bool chmin(T &a, const T &b) { if (a <= b) return false; a = b; return true; } template <typename T> bool chmax(T &a, const T &b) { if (a >= b) return false; a = b; return true; } template <typename T> T max(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]); return ret; } template <typename T> T min(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]); return ret; } template <typename T> T sum(vector<T> &a){ T ret = 0; for (int i=0; i<(int)a.size(); i++) ret += a[i]; return ret; } // JOUTAI ... (ICHI, HOUKOU) // DOUBLING int main(){ int h, w; cin >> h >> w; ll k; cin >> k; vector go(60, vector(4, vector(h, vector<tuple<int,int,int>>(w)))); rep(i,0,4){ rep(j,0,h){ rep(l,0,w){ int x = j, y = l, t = i; if (i&1){ x = x-1; }else{ x = x+1; } if (!(0 <= x && x < h)){ t ^= 1; x = min(x, h-1); x = max(x, 0); } if (i&2){ y = y-1; }else{ y = y+1; } if (!(0 <= y && y < w)){ t ^= 2; y = min(y, w-1); y = max(y, 0); } go[0][i][j][l] = make_tuple(t, x, y); } } } rep(num,0,59){ rep(i,0,4){ rep(j,0,h){ rep(l,0,w){ auto [x1, y1, z1] = go[num][i][j][l]; auto [x2, y2, z2] = go[num][x1][y1][z1]; go[num+1][i][j][l] = tuple(x2, y2, z2); } } } } vector dp(60, vector(4, vector(h, vector<int>(w)))); dp[0][0][0][0] = 1; rep(num,0,59){ dp[num+1] = dp[num]; rep(i,0,4){ rep(j,0,h){ rep(l,0,w){ auto [x, y, z] = go[num][i][j][l]; dp[num+1][x][y][z] ^= dp[num][i][j][l]; } } } } //return 0; vector pp(4, vector(h, vector<int>(w))); pp[0][0][0] = 1; //return 0; k--; rrep(num,0,60){ if (k >> num & 1){ vector pr(4, vector(h, vector<int>(w))); rep(i,0,4){ rep(j,0,h){ rep(l,0,w){ auto [x, y, z] = go[num][i][j][l]; pr[x][y][z] ^= pp[i][j][l]; } } } rep(i,0,4){ rep(j,0,h){ rep(l,0,w){ pr[i][j][l] ^= dp[num][i][j][l]; } } } pp = pr; } } //return 0; rep(i,0,h){ rep(j,0,w){ int g = 0; rep(l,0,4){ g ^= pp[l][i][j]; } if (g == 0){ cout << '.'; }else{ cout << '#'; } } cout << endl; } }