結果

問題 No.1292 パタパタ三角形
ユーザー akun0716akun0716
提出日時 2021-01-31 23:19:28
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,953 bytes
コンパイル時間 872 ms
コンパイル使用メモリ 91,784 KB
実行使用メモリ 17,516 KB
最終ジャッジ日時 2023-09-12 00:40:43
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 110 ms
17,376 KB
testcase_13 AC 114 ms
17,516 KB
testcase_14 AC 12 ms
4,964 KB
testcase_15 AC 12 ms
5,104 KB
testcase_16 AC 8 ms
5,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<map>
#include<set>
#include<stack>
#include<queue>
#include<math.h>
using namespace std;
typedef long long ll;
#define int long long
#define double long double
typedef vector<int> VI;
typedef pair<int, int> pii;
typedef vector<pii> VP;
typedef vector<string> VS;
typedef priority_queue<int> PQ;
template<class T>bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; }
#define fore(i,a) for(auto &i:a)
#define REP(i,n) for(int i=0;i<n;i++)
#define eREP(i,n) for(int i=0;i<=n;i++)
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define eFOR(i,a,b) for(int i=(a);i<=(b);++i)
#define SORT(c) sort((c).begin(),(c).end())
#define rSORT(c) sort((c).rbegin(),(c).rend())
#define LB(x,a) lower_bound((x).begin(),(x).end(),(a))
#define UB(x,a) upper_bound((x).begin(),(x).end(),(a))
#define INF 1000000000
#define LLINF 9223372036854775807
#define mod 1000000007
#define eps 1e-12 
//priority_queue<int,vector<int>, greater<int> > q2;


signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	string S; cin >> S;
	int N = S.size();
	VI A(N);
	REP(i, N) {
		if (S[i] == 'a')A[i] = 0;
		if (S[i] == 'b')A[i] = 1;
		if (S[i] == 'c')A[i] = 2;
	}
	int ans = 0;
	map<pii, bool>mp;
	int x = 0, y = 0;
	//int type[3] = { 0,1,2 };//その記号がどの移動に対応するか
	VI type = { 0,1,2 };

	mp[(pii) { x, y }] = 1;
	REP(i, N) {
		int t = type[A[i]];
		VI tmp(3);
		if (t == 0) {
			x--;
			REP(j, 3) {
				type[j]++;
				type[j] %= 3;
			}
		}
		else if (t == 1) {
			x++;
			REP(j, 3) {
				type[j]--;
				type[j] += 3;
				type[j] %= 3;
			}
		}
		else {
			if (y % 2) {
				y--;
			}
			else {
				y++;
			}
		}
		if (!mp[(pii) { x, y }]) {
			ans++;
			mp[(pii) { x, y }] = 1;
		}
		//cout << x << " " << y << endl;
	}




	cout << ++ans << endl;
	return 0;
}

0