結果

問題 No.291 黒い文字列
ユーザー かにかに
提出日時 2015-10-16 23:30:52
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,041 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 95,244 KB
実行使用メモリ 7,824 KB
最終ジャッジ日時 2023-09-29 01:57:46
合計ジャッジ時間 4,197 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,824 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <set>
#include <map>
#include <list>
#include <queue>
#include <stack>
#include <cmath>
#include <ctype.h>
#include <ctime>
#include <cstdio>
#include <vector>
#include <string>
#include <bitset>
#include <cctype>
#include <cstdlib>
#include <cstring>
#include <utility>
#include <numeric>
#include <complex>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <cassert>
#include <iostream>
#include <iterator>
#include <algorithm>
#define aLL(g) (g).begin(),(g).end()
#define REP(i, x, n) for(int i = x; i < n; i++)
#define rep(i,n) REP(i,0,n)
#define F(i,j,k) fill(i[0],i[0]+j*j,k)
#define P(p) cout<<(p)<<endl;
#define EXISt(s,e) ((s).find(e)!=(s).end())
#define INF 1<<25
#define MAX 100000000
#define PI 3.14159265258979
#define pb push_back
using namespace std;
typedef vector<int> vi;
typedef vector<long long> vl;
typedef vector<double> vd;
typedef pair<int, int> pii;
typedef pair<long, long> pll;
typedef long long ll;
int dx[] = { 0, 1, 0, -1 };
int dy[] = { -1, 0, 1, 0 };

int sttoi(std::string str) {
	int ret;
	std::stringstream ss; ss << str;
	ss >> ret;
	return ret;
}

bool sort_greater(const pair<string, int> &a, const pair<string, int> &b) {
	return a.second > b.second;
}

void solve() {
	string s,t = "KUROI";
	vector<char> v;
	int sum = 0;
	cin >> s;
	for (int i = 0; i < s.length(); i++){
		for (int j = 0; j < 5; j++){
			if (s[i] == t[j]){
				v.push_back(s[i]);
			}
		}
		if (s[i] == '?'){
			v.push_back('?');
		}
	}
	while (true){
		int now = 0;
		stack<int> u;
		bool f = true;
		rep(i, v.size()){
			if (v[i] != '!'){
				f = false;
			}
		}
		if (f){
			break;
		}
		for (int i = 0; i < v.size() && now < 5; i++){
			if (v[i] == t[now]){
				now++;
				v[i] = '!';
			}
			if (v[i] == '?'){
				bool flag = true;
				for (int j = i; j < v.size(); j++){
					if (v[j] == t[now]){
						flag = false;
					}
				}
				if (flag){
					v[i] = '!';
					now++;
				}
			}
		}
		if (now == 5){
			sum++;
		}
	}
	P(sum);
}

int main() {
	solve();
	return 0;
}
0