結果

問題 No.2432 Flip and Move
ユーザー 👑 NachiaNachia
提出日時 2023-08-18 22:20:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 88,556 KB
実行使用メモリ 99,312 KB
最終ジャッジ日時 2024-05-06 04:32:58
合計ジャッジ時間 5,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 56 ms
55,672 KB
testcase_03 AC 124 ms
99,312 KB
testcase_04 AC 13 ms
22,752 KB
testcase_05 AC 14 ms
22,752 KB
testcase_06 AC 24 ms
21,580 KB
testcase_07 AC 88 ms
82,824 KB
testcase_08 AC 93 ms
85,348 KB
testcase_09 AC 115 ms
97,480 KB
testcase_10 AC 43 ms
49,920 KB
testcase_11 AC 46 ms
51,344 KB
testcase_12 AC 39 ms
44,516 KB
testcase_13 AC 30 ms
34,960 KB
testcase_14 AC 32 ms
25,892 KB
testcase_15 AC 98 ms
90,932 KB
testcase_16 AC 30 ms
27,812 KB
testcase_17 AC 79 ms
53,668 KB
testcase_18 AC 20 ms
16,196 KB
testcase_19 AC 58 ms
50,596 KB
testcase_20 AC 83 ms
55,076 KB
testcase_21 AC 55 ms
50,280 KB
testcase_22 AC 73 ms
52,004 KB
testcase_23 AC 17 ms
15,464 KB
testcase_24 AC 76 ms
53,152 KB
testcase_25 AC 51 ms
49,652 KB
testcase_26 AC 40 ms
35,552 KB
testcase_27 AC 5 ms
5,428 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 58 ms
50,132 KB
testcase_30 AC 74 ms
54,100 KB
testcase_31 AC 38 ms
34,864 KB
testcase_32 AC 7 ms
6,496 KB
testcase_33 AC 70 ms
53,780 KB
testcase_34 AC 36 ms
28,760 KB
testcase_35 AC 26 ms
25,324 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <atcoder/modint>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
const i64 INF = 1001001001001001001;

using Modint = atcoder::static_modint<998244353>;

int main(){
    int H, W; cin >> H >> W;
    i64 K; cin >> K;
    vector<vector<int>> vis(4, vector<int>(H*W));
    vector<pair<int,int>> ord;
    int y=0, x=0, h=1, w=1;
    while(vis[h*2+w][y*W+x] == 0){
        ord.push_back({ y, x });
        vis[h*2+w][y*W+x] = 1;
        if(h){
            if(y == H-1) h = 0; else y++;
        } else {
            if(y == 0) h = 1; else y--;
        }
        if(w){
            if(x == W-1) w = 0; else x++;
        } else {
            if(x == 0) w = 1; else x--;
        }
    }
    i64 f = ord.size();
    rep(i,f) ord.push_back(ord[i]);
    K %= (f*2);
    vector<string> ans;
    rep(y,H) ans.push_back(string(W, '.'));
    rep(i,K) ans[ord[i].first][ord[i].second] ^= ('#' ^ '.');
    rep(y,H) cout << ans[y] << '\n';
    return 0;
}

struct ios_do_not_sync{
    ios_do_not_sync(){
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;

0