結果

問題 No.2432 Flip and Move
ユーザー k1suxuk1suxu
提出日時 2023-08-19 00:25:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 2,620 bytes
コンパイル時間 2,907 ms
コンパイル使用メモリ 270,432 KB
実行使用メモリ 144,732 KB
最終ジャッジ日時 2024-11-28 12:28:04
合計ジャッジ時間 12,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 197 ms
144,732 KB
testcase_03 AC 281 ms
136,064 KB
testcase_04 AC 102 ms
74,752 KB
testcase_05 AC 103 ms
74,624 KB
testcase_06 AC 81 ms
58,532 KB
testcase_07 AC 175 ms
89,320 KB
testcase_08 AC 184 ms
96,484 KB
testcase_09 AC 255 ms
131,256 KB
testcase_10 AC 132 ms
92,716 KB
testcase_11 AC 147 ms
105,704 KB
testcase_12 AC 108 ms
79,648 KB
testcase_13 AC 110 ms
80,204 KB
testcase_14 AC 63 ms
33,100 KB
testcase_15 AC 214 ms
112,476 KB
testcase_16 AC 162 ms
31,616 KB
testcase_17 AC 479 ms
65,152 KB
testcase_18 AC 72 ms
20,864 KB
testcase_19 AC 341 ms
51,200 KB
testcase_20 AC 524 ms
72,064 KB
testcase_21 AC 347 ms
50,048 KB
testcase_22 AC 341 ms
58,112 KB
testcase_23 AC 44 ms
17,408 KB
testcase_24 AC 483 ms
62,464 KB
testcase_25 AC 340 ms
46,720 KB
testcase_26 AC 234 ms
57,600 KB
testcase_27 AC 9 ms
7,168 KB
testcase_28 AC 5 ms
6,816 KB
testcase_29 AC 338 ms
48,640 KB
testcase_30 AC 501 ms
67,584 KB
testcase_31 AC 229 ms
54,528 KB
testcase_32 AC 12 ms
7,936 KB
testcase_33 AC 485 ms
66,048 KB
testcase_34 AC 194 ms
35,840 KB
testcase_35 AC 146 ms
47,744 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC target("avx")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")

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

#define rep(i,n) for(int i = 0; i < (int)n; i++)
#define FOR(n) for(int i = 0; i < (int)n; i++)
#define repi(i,a,b) for(int i = (int)a; i < (int)b; i++)
#define all(x) x.begin(),x.end()
//#define mp make_pair
#define vi vector<int>
#define vvi vector<vi>
#define vvvi vector<vvi>
#define vvvvi vector<vvvi>
#define pii pair<int,int>
#define vpii vector<pair<int,int>>

template<typename T>
void chmax(T &a, const T &b) {a = (a > b? a : b);}
template<typename T>
void chmin(T &a, const T &b) {a = (a < b? a : b);}

using ll = long long;
using ld = long double;
using ull = unsigned long long;

const ll INF = numeric_limits<long long>::max() / 2;
const ld pi = 3.1415926535897932384626433832795028;
const ll mod = 998244353;
int dx[] = {-1, -1, 1, 1};
int dy[] = {-1, 1, -1, 1};

#define int long long

void solve() {
    map<pii, int> inv;
    rep(d, 4) inv[make_pair(dx[d], dy[d])] = d;

    int h, w, k;
    cin >> h >> w >> k;

    vector<string> cycle(h, string(w, '.'));
    int cnt = 0;
    {
        vector<vector<vector<bool>>> done(h, vector<vector<bool>>(w, vector<bool>(4, false)));
        array<int, 3> cur = {0, 0, 3};
        while(!done[cur[0]][cur[1]][cur[2]]) {
            cycle[cur[0]][cur[1]] = (char)('.' + '#' - cycle[cur[0]][cur[1]]);
            done[cur[0]][cur[1]][cur[2]] = true;
            ++cnt;
            int ddx = dx[cur[2]], ddy = dy[cur[2]];
            int nx = cur[0] + ddx;
            int ny = cur[1] + ddy;

            if(nx < 0 || nx >= h) {
                nx = cur[0];
                ddx *= -1;
            }
            if(ny < 0 || ny >= w) {
                ny = cur[1];
                ddy *= -1;
            }

            cur = {nx, ny, inv[make_pair(ddx, ddy)]};
        }
    }

    vector<string> ans(h, string(w, '.'));
    int how_many = k/cnt;
    if(how_many%2 ==1) ans = cycle;
    k %= cnt;

    array<int, 3> cur = {0, 0, 3};
    rep(times, k) {
        ans[cur[0]][cur[1]] = (char)('.' + '#' - ans[cur[0]][cur[1]]);
        int ddx = dx[cur[2]], ddy = dy[cur[2]];
        int nx = cur[0] + ddx;
        int ny = cur[1] + ddy;

        if(nx < 0 || nx >= h) {
            nx = cur[0];
            ddx *= -1;
        }
        if(ny < 0 || ny >= w) {
            ny = cur[1];
            ddy *= -1;
        }

        cur = {nx, ny, inv[make_pair(ddx, ddy)]};
    }

    for(auto e : ans) cout << e << "\n";
}

signed main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}
0