結果

問題 No.2432 Flip and Move
ユーザー milanis48663220milanis48663220
提出日時 2023-08-18 23:17:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,445 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 138,484 KB
実行使用メモリ 402,496 KB
最終ジャッジ日時 2023-08-18 23:18:10
合計ジャッジ時間 20,714 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 682 ms
386,148 KB
testcase_03 AC 746 ms
402,496 KB
testcase_04 AC 348 ms
241,392 KB
testcase_05 AC 348 ms
241,632 KB
testcase_06 AC 283 ms
163,940 KB
testcase_07 AC 477 ms
262,816 KB
testcase_08 AC 538 ms
284,148 KB
testcase_09 AC 698 ms
387,624 KB
testcase_10 AC 448 ms
246,464 KB
testcase_11 AC 519 ms
280,476 KB
testcase_12 AC 371 ms
210,768 KB
testcase_13 AC 422 ms
226,712 KB
testcase_14 AC 168 ms
93,264 KB
testcase_15 AC 622 ms
332,036 KB
testcase_16 AC 927 ms
121,696 KB
testcase_17 TLE -
testcase_18 AC 584 ms
72,936 KB
testcase_19 AC 1,905 ms
210,880 KB
testcase_20 TLE -
testcase_21 AC 1,848 ms
207,012 KB
testcase_22 AC 1,836 ms
230,900 KB
testcase_23 AC 362 ms
61,532 KB
testcase_24 TLE -
testcase_25 AC 1,734 ms
195,900 KB
testcase_26 AC 1,260 ms
206,308 KB
testcase_27 AC 51 ms
17,608 KB
testcase_28 AC 18 ms
9,560 KB
testcase_29 AC 1,855 ms
202,144 KB
testcase_30 TLE -
testcase_31 AC 1,241 ms
196,912 KB
testcase_32 AC 89 ms
23,300 KB
testcase_33 TLE -
testcase_34 AC 1,177 ms
136,296 KB
testcase_35 AC 763 ms
162,612 KB
testcase_36 AC 2 ms
4,388 KB
testcase_37 AC 2 ms
4,388 KB
testcase_38 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

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; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

using T = tuple<int, int, int>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int h, w; cin >> h >> w;
    ll k; cin >> k;
    auto nx = vec3d(h, w, 8, T(0, 0, 0));
    for(int i = 0; i < h; i++){
        for(int j = 0; j < w; j++){
            for(int p = 0; p < 8; p++){
                int dx = (p&1) ? -1 : 1;
                int dy = (p&2) ? -1 : 1;
                bool flip = (p&4) ? false : true;
                if(flip){
                    if(0 <= i+dx && i+dx < h){
                        nx[i][j][p] = T(i+dx, j, p^4);
                    }else{
                        nx[i][j][p] = T(i, j, p^4^1);
                    }
                }else{
                    if(0 <= j+dy && j+dy < w){
                        nx[i][j][p] = T(i, j+dy, p^4);
                    }else{
                        nx[i][j][p] = T(i, j, p^4^2);
                    }
                }
            }
        }
    }
    auto seen = vec3d(h, w, 8, 0ll);
    int x = 0, y = 0, p = 0;
    vector<T> path;
    for(ll idx = 0; idx < k*2; idx++){
        if(seen[x][y][p] > 0){
            T t(x, y, p);
            ll head = 0;
            ll cycle = 0;
            for(int i = 0; i < path.size(); i++){
                if(t == path[i]){
                    head = i;
                    cycle = path.size()-head;
                    break;
                }
            }
            ll cnt_cycle = (k*2-head)/cycle;
            ll rem = (k*2-head)%cycle;
           
            for(int i = 0; i < cycle; i++){
                auto [xx, yy, pp] = path[i+head];
                seen[xx][yy][pp] += cnt_cycle-1;
                if(i < rem){
                    seen[xx][yy][pp]++;
                }
            }
            break;
        }
        path.push_back({x, y, p});
        seen[x][y][p]++;
        auto [xx, yy, pp] = nx[x][y][p];
        x = xx;
        y = yy;
        p = pp;
        assert(idx < 10*h*w);
    }
    auto ans = vec2d(h, w, 0);
    for(int x = 0; x < h; x++){
        for(int y = 0; y < w; y++){
            for(int p = 0; p < 4; p++){
                ans[x][y] ^= (seen[x][y][p]%2);
            }
            cout << (ans[x][y] == 0 ? '.' : '#');
        }
        cout << '\n';
    }
}
0