結果
問題 | No.1292 パタパタ三角形 |
ユーザー | outline |
提出日時 | 2020-12-13 17:07:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 65 ms / 2,000 ms |
コード長 | 2,774 bytes |
コンパイル時間 | 1,312 ms |
コンパイル使用メモリ | 140,416 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-09-19 23:40:38 |
合計ジャッジ時間 | 2,342 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 30 ms
6,940 KB |
testcase_08 | AC | 28 ms
6,944 KB |
testcase_09 | AC | 49 ms
15,488 KB |
testcase_10 | AC | 51 ms
15,360 KB |
testcase_11 | AC | 49 ms
15,300 KB |
testcase_12 | AC | 62 ms
16,128 KB |
testcase_13 | AC | 65 ms
16,000 KB |
testcase_14 | AC | 12 ms
6,940 KB |
testcase_15 | AC | 12 ms
6,940 KB |
testcase_16 | AC | 7 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } // a/\b // /__\ // c // 初期重心 (0, 0) から // a を選択 -> (-1, √3) // b を選択 -> (1, √3) // c を選択 -> (0, -2√3) // と移動するように縮尺を調整して、訪問した重心座標の整数係数を set で管理しておく int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); string s; cin >> s; int n = s.length(); // 重心 set<pair<ll, ll>> center; center.emplace(0, 0); // 整数係数 ll x = 0, y = 0; // dir : 三角形の向き (0, 1) -> (上, 下) int dir = 0; // move_dir[i] : 文字 ch がどの方向に行くか // 初期の移動方向 (a(0), b(1), c(2)) -> (左(0), 右(1), 上下(2)) vector<int> move_dir(3); for(int i = 0; i < 3; ++i) move_dir[i] = i; for(int i = 0; i < n; ++i){ int j = s[i] - 'a'; if(move_dir[j] == 2){ if(dir == 0) y -= 2; else y += 2; } else{ if(move_dir[j] == 1) x += 1; else x -= 1; if(dir == 0) y += 1; else y -= 1; // move_dir の更新 // まず、(文字 -> 向き) を (向き -> 文字)に変換 vector<int> nxt(3); for(int k = 0; k < 3; ++k){ nxt[move_dir[k]] = k; } // 向きの変更 if(move_dir[j] == 1){ swap(nxt[0], nxt[1]); swap(nxt[1], nxt[2]); } else{ swap(nxt[2], nxt[0]); swap(nxt[1], nxt[2]); } // (文字 -> 向き) の対応関係に戻す for(int k = 0; k < 3; ++k){ move_dir[nxt[k]] = k; } } dir ^= 1; center.emplace(x, y); } cout << center.size() << '\n'; return 0; }