結果
問題 | No.1292 パタパタ三角形 |
ユーザー |
![]() |
提出日時 | 2020-11-20 21:38:34 |
言語 | C++17 (gcc 12.2.0 + boost 1.81.0) |
結果 |
AC
|
実行時間 | 69 ms / 2,000 ms |
コード長 | 2,947 bytes |
コンパイル時間 | 838 ms |
実行使用メモリ | 16,068 KB |
最終ジャッジ日時 | 2023-02-23 18:03:43 |
合計ジャッジ時間 | 2,175 ms |
ジャッジサーバーID (参考情報) |
judge12 / judge13 |
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,256 KB |
testcase_01 | AC | 2 ms
6,196 KB |
testcase_02 | AC | 2 ms
6,208 KB |
testcase_03 | AC | 1 ms
6,280 KB |
testcase_04 | AC | 1 ms
6,280 KB |
testcase_05 | AC | 1 ms
6,176 KB |
testcase_06 | AC | 2 ms
6,180 KB |
testcase_07 | AC | 35 ms
6,328 KB |
testcase_08 | AC | 35 ms
6,164 KB |
testcase_09 | AC | 54 ms
15,472 KB |
testcase_10 | AC | 53 ms
15,232 KB |
testcase_11 | AC | 54 ms
15,232 KB |
testcase_12 | AC | 69 ms
16,068 KB |
testcase_13 | AC | 66 ms
15,888 KB |
testcase_14 | AC | 10 ms
6,192 KB |
testcase_15 | AC | 17 ms
6,252 KB |
testcase_16 | AC | 17 ms
6,196 KB |
ソースコード
#line 1 "main.cpp" /** * @title Template */ #include <iostream> #include <algorithm> #include <utility> #include <numeric> #include <vector> #include <array> #include <cassert> #include <set> #line 2 "/Users/kodamankod/Desktop/cpp_programming/Library/other/chmin_chmax.cpp" template <class T, class U> constexpr bool chmin(T &lhs, const U &rhs) { if (lhs > rhs) { lhs = rhs; return true; } return false; } template <class T, class U> constexpr bool chmax(T &lhs, const U &rhs) { if (lhs < rhs) { lhs = rhs; return true; } return false; } /** * @title Chmin/Chmax */ #line 2 "/Users/kodamankod/Desktop/cpp_programming/Library/other/range.cpp" #line 4 "/Users/kodamankod/Desktop/cpp_programming/Library/other/range.cpp" class range { struct iter { std::size_t itr; constexpr iter(std::size_t pos) noexcept: itr(pos) { } constexpr void operator ++ () noexcept { ++itr; } constexpr bool operator != (iter other) const noexcept { return itr != other.itr; } constexpr std::size_t operator * () const noexcept { return itr; } }; struct reviter { std::size_t itr; constexpr reviter(std::size_t pos) noexcept: itr(pos) { } constexpr void operator ++ () noexcept { --itr; } constexpr bool operator != (reviter other) const noexcept { return itr != other.itr; } constexpr std::size_t operator * () const noexcept { return itr; } }; const iter first, last; public: constexpr range(std::size_t first, std::size_t last) noexcept: first(first), last(std::max(first, last)) { } constexpr iter begin() const noexcept { return first; } constexpr iter end() const noexcept { return last; } constexpr reviter rbegin() const noexcept { return reviter(*last - 1); } constexpr reviter rend() const noexcept { return reviter(*first - 1); } }; /** * @title Range */ #line 17 "main.cpp" using i32 = std::int32_t; using i64 = std::int64_t; using u32 = std::uint32_t; using u64 = std::uint64_t; using isize = std::ptrdiff_t; using usize = std::size_t; constexpr i32 inf32 = (i32(1) << 30) - 1; constexpr i64 inf64 = (i64(1) << 62) - 1; int main() { std::string S; std::cin >> S; std::set<std::tuple<isize, isize, bool>> set; isize x = 0; isize y = 0; bool b = false; std::string s = "abc"; set.emplace(x, y, b); for (const auto c: S) { if (s[0] == c) { if (b) { y += 1; } else { y -= 1; } } else if (s[1] == c) { if (b) { s = std::string("") + s[2] + s[0] + s[1]; } else { x -= 1; s = std::string("") + s[2] + s[0] + s[1]; } } else { if (b) { x += 1; s = std::string("") + s[1] + s[2] + s[0]; } else { s = std::string("") + s[1] + s[2] + s[0]; } } b = !b; set.emplace(x, y, b); // std::cerr << x << ' ' << y << ' ' << b << ' ' << s << '\n'; } std::cout << set.size() << '\n'; return 0; }