結果

問題 No.2432 Flip and Move
ユーザー momoyuumomoyuu
提出日時 2023-08-18 22:10:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,058 bytes
コンパイル時間 3,410 ms
コンパイル使用メモリ 262,672 KB
実行使用メモリ 321,424 KB
最終ジャッジ日時 2024-11-28 07:34:53
合計ジャッジ時間 100,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
28,160 KB
testcase_02 AC 123 ms
52,956 KB
testcase_03 AC 1,812 ms
321,424 KB
testcase_04 AC 56 ms
29,988 KB
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
31,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ll h,w;
    cin>>h>>w;
    ll k;
    cin>>k;
    vector<vector<vector<int>>> vis(4,vector<vector<int>>(h,vector<int>(w,-1)));
    int now = 0;
    vector<vector<int>> ans(h,vector<int>(w,0));
    int ni = 0;
    int nj = 0;
    int dx = 1;
    int dy = 1;

    stack<pair<int,pair<int,int>>> st;
    st.push(make_pair(0,make_pair(0,0)));
    vis[0][0][0] = 0;
    bool fn = false;
    while(true){
        if(now==k) break;
        ans[ni][nj] ^= 1;
        int nni = ni + dx;
        if(nni<0||nni>=h){
            nni = ni;
            dx *= -1;
        }
        int nnj = nj + dy;
        if(nnj<0||nnj>=w){
            nnj = nj;
            dy *= -1;
        }
        ni = nni;
        nj = nnj;
        now++;
        int mask = 0;
        if(dx==-1) mask += 1;
        if(dy==-1) mask += 2;
        if(vis[mask][nni][nnj]==-1){
            vis[mask][nni][nnj] = now;
            st.push(make_pair(mask,make_pair(nni,nnj)));
            continue;
        }
        if(fn) continue;
        stack<pair<int,int>> nxt;
        ll cnt = 0;
        pair<int,pair<int,int>> want = make_pair(mask,make_pair(nni,nnj));
        while(true){
            if(st.top()==want){
                cnt++;
                nxt.push(make_pair(nni,nnj));
                break;
            }
            int nx = st.top().second.first;
            int ny = st.top().second.second;
            cnt++;
            nxt.push(make_pair(nx,ny));
            st.pop();
            continue;
        }
        fn = true;
        ll res = k - now;
        ll can = res / cnt;
        if(can%2==1){
            while(nxt.size()){
                int ni = nxt.top().first;
                int nj = nxt.top().second;
                ans[ni][nj] ^= 1;
                nxt.pop();
            }
        }
        now += can * cnt;
    }
    for(int i = 0;i<h;i++){
        for(int j = 0;j<w;j++){
            if(ans[i][j]==0) cout<<".";
            else cout<<"#";
        }
        cout<<endl;
    }
}

0