結果
問題 | No.2432 Flip and Move |
ユーザー | polylogK |
提出日時 | 2023-09-28 18:38:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 628 ms / 2,000 ms |
コード長 | 1,951 bytes |
コンパイル時間 | 2,375 ms |
コンパイル使用メモリ | 208,480 KB |
実行使用メモリ | 143,872 KB |
最終ジャッジ日時 | 2024-07-21 13:19:23 |
合計ジャッジ時間 | 13,554 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 175 ms
116,496 KB |
testcase_03 | AC | 259 ms
143,872 KB |
testcase_04 | AC | 100 ms
62,080 KB |
testcase_05 | AC | 100 ms
61,952 KB |
testcase_06 | AC | 72 ms
48,004 KB |
testcase_07 | AC | 174 ms
94,536 KB |
testcase_08 | AC | 186 ms
102,144 KB |
testcase_09 | AC | 256 ms
138,624 KB |
testcase_10 | AC | 115 ms
74,832 KB |
testcase_11 | AC | 132 ms
85,336 KB |
testcase_12 | AC | 101 ms
64,460 KB |
testcase_13 | AC | 102 ms
65,372 KB |
testcase_14 | AC | 62 ms
34,884 KB |
testcase_15 | AC | 215 ms
118,980 KB |
testcase_16 | AC | 198 ms
26,752 KB |
testcase_17 | AC | 594 ms
54,144 KB |
testcase_18 | AC | 96 ms
18,008 KB |
testcase_19 | AC | 429 ms
42,752 KB |
testcase_20 | AC | 624 ms
59,776 KB |
testcase_21 | AC | 459 ms
41,728 KB |
testcase_22 | AC | 314 ms
48,256 KB |
testcase_23 | AC | 54 ms
14,976 KB |
testcase_24 | AC | 606 ms
52,096 KB |
testcase_25 | AC | 381 ms
39,040 KB |
testcase_26 | AC | 280 ms
48,000 KB |
testcase_27 | AC | 8 ms
6,400 KB |
testcase_28 | AC | 4 ms
5,376 KB |
testcase_29 | AC | 409 ms
40,704 KB |
testcase_30 | AC | 606 ms
56,320 KB |
testcase_31 | AC | 289 ms
45,312 KB |
testcase_32 | AC | 11 ms
7,040 KB |
testcase_33 | AC | 628 ms
55,040 KB |
testcase_34 | AC | 252 ms
30,080 KB |
testcase_35 | AC | 184 ms
39,936 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 |
ソースコード
#include <bits/stdc++.h> using namespace std::literals::string_literals; using i64 = std::int_fast64_t; using std::cerr; using std::cin; using std::cout; using std::endl; #if defined(DONLINE_JUDGE) #define NDEBUG #elif defined(ONLINE_JUDGE) #define NDEBUG #endif template <typename T> std::vector<T> make_v(size_t a) { return std::vector<T>(a); } template <typename T, typename... Ts> auto make_v(size_t a, Ts... ts) { return std::vector<decltype(make_v<T>(ts...))>(a, make_v<T>(ts...)); } int main() { int h, w; i64 k; scanf("%d%d%lld", &h, &w, &k); auto color = make_v<int>(h, w); for (auto& x : color) for (auto& y : x) y = 0; auto used = make_v<int>(h, w, 4); for (auto& x : used) for (auto& y : x) for (auto& z : y) z = 0; int y = 0, x = 0, dy = 1, dx = 1, cnt = 0; while (cnt < k) { const int state = ((dy == 1) << 1) | (dx == 1); if (used[y][x][state]) { const i64 repeat = k / cnt; if (repeat % 2 == 0) { for (auto& x : color) for (auto& y : x) y = 0; } k %= cnt; cnt = 0; break; } used[y][x][state] = 1; ++cnt; color[y][x] = 1 - color[y][x]; if (0 <= y + dy and y + dy < h) y = y + dy; else dy = -dy; if (0 <= x + dx and x + dx < w) x = x + dx; else dx = -dx; } while (cnt < k) { ++cnt; color[y][x] = 1 - color[y][x]; if (0 <= y + dy and y + dy < h) y = y + dy; else dy = -dy; if (0 <= x + dx and x + dx < w) x = x + dx; else dx = -dx; } for (int i = 0; i < h; ++i) { for (int j = 0; j < w; ++j) { putchar(color[i][j] == 0 ? '.' : '#'); } putchar('\n'); } return 0; }