結果

問題 No.149 碁石の移動
ユーザー OnjuOnju
提出日時 2015-02-13 00:52:27
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,403 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 65,064 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-06 00:28:51
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

//The ごり押し★
#include <iostream>
#include <algorithm>
#include <cstring>
#include <climits>
#include <string>
#include <sstream>
#include <vector>
#define T_MAX 100
#define S_LEN 100
using namespace std;
typedef unsigned long long ULL;
typedef long long LL;

int main()
{
	int T;
	string S[T_MAX];

	cin >> T;
	for (int i = 0; i < T; ++i)
		cin >> S[i];

	for (int s = 0; s < T; ++s)
	{
		int len = S[s].size();
		int maxscore = 100;

		for (int i = 0; i <= len - 11; ++i)
		{
			int gscore = 0;

			for (int j = 7; j < i;++j)
			{
				if (S[s][j - 7] == 'p'&&
					S[s][j - 6] == 'r'&&
					S[s][j - 5] == 'o'&&
					S[s][j - 4] == 'b'&&
					S[s][j - 3] == 'l'&&
					S[s][j - 2] == 'e'&&
					S[s][j - 1] == 'm')
					--gscore;
			}
			if (S[s][i] == 'g')
				++gscore;
			if (S[s][i + 1] == 'o')
				++gscore;
			if (S[s][i + 2] == 'o')
				++gscore;
			if (S[s][i + 3] == 'd')
				++gscore;
			for (int j = i + 4; j <= len - 7; ++j)
			{
				int pscore = 0;

				if (S[s][j] == 'p')
					++pscore;
				if (S[s][j + 1] == 'r')
					++pscore;
				if (S[s][j + 2] == 'o')
					++pscore;
				if (S[s][j + 3] == 'b')
					++pscore;
				if (S[s][j + 4] == 'l')
					++pscore;
				if (S[s][j + 5] == 'e')
					++pscore;
				if (S[s][j + 6] == 'm')
					++pscore;
				if (maxscore > 11 - gscore - pscore)
					maxscore = 11 - gscore - pscore;
			}
		}

		cout << maxscore << endl;
	}

	return 0;
}
0