結果

問題 No.2432 Flip and Move
ユーザー aradarad
提出日時 2023-08-19 15:35:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,718 bytes
コンパイル時間 4,804 ms
コンパイル使用メモリ 268,084 KB
実行使用メモリ 150,032 KB
最終ジャッジ日時 2024-11-29 09:10:03
合計ジャッジ時間 107,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
141,440 KB
testcase_02 AC 1,359 ms
150,032 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
58,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;
using VD = vector<double>;
using VVD = vector<VD>;
using VS = vector<string>;
using P = pair<ll,ll>;
using VP = vector<P>;
#define rep(i, n) for (ll i = 0; i < ll(n); i++)
#define out(x) cout << x << endl
#define dout(x) cout << fixed << setprecision(10) << x << endl
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
#define sz(x) (int)(x.size())
#define re0 return 0
#define pcnt __builtin_popcountll
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
constexpr int inf = 1e9;
constexpr ll INF = 1e18;
//using mint = modint1000000007;
using mint = modint998244353;
int di[4] = {1,0,-1,0};
int dj[4] = {0,1,0,-1};

int main(){
    ll h,w,k;
    cin >> h >> w >> k;
    VS s(h);
    rep(i,h)rep(j,w) s[i].push_back('.');
    vector<vector<vector<ll>>> memo(h,vector<vector<ll>>(w,vector<ll>(4,-1)));
    memo[0][0][0] = 0;
    bool flag = false;
    ll i = 0,j = 0,state = 0;
    ll cnt = 0;
    while(cnt < k){
        if(s[i][j] == '.') s[i][j] = '#';
        else s[i][j] = '.';
        ll pi = i,pj = j,pstate = state;
        //jouge
        if(state>>1&1){
            //ue
            ll ni = i-1;
            ll nj = j;
            if(ni < 0 || nj < 0 || ni >= h || nj >= w){
                state ^= 1<<1;
            } else {
                i = ni;
                j = nj;
            }
        } else {
            //shita
            ll ni = i+1;
            ll nj = j;
            if(ni < 0 || nj < 0 || ni >= h || nj >= w){
                state ^= 1<<1;
            } else {
                i = ni;
                j = nj;
            }
        }
        if(state&1){
            //hidari
            ll ni = i;
            ll nj = j-1;
            if(ni < 0 || nj < 0 || ni >= h || nj >= w){
                state ^= 1;
            } else {
                i = ni;
                j = nj;
            }
        } else {
            //migi
            ll ni = i;
            ll nj = j+1;
            if(ni < 0 || nj < 0 || ni >= h || nj >= w){
                state ^= 1;
            } else {
                i = ni;
                j = nj;
            }
        }
        if(memo[i][j][state] == -1 || flag){
            memo[i][j][state] = memo[pi][pj][pstate]+1;
        } else {
            flag = true;
            cnt %= (memo[pi][pj][pstate]-memo[i][j][state]+1)*2;
        }
        cnt++;
    }
    rep(i,h) out(s[i]);
}
0