結果

問題 No.662 スロットマシーン
ユーザー naimonon77naimonon77
提出日時 2019-01-06 19:00:48
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 4,438 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 184,612 KB
実行使用メモリ 5,008 KB
最終ジャッジ日時 2023-08-15 16:16:40
合計ジャッジ時間 8,488 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
4,384 KB
testcase_01 AC 319 ms
4,380 KB
testcase_02 AC 247 ms
4,384 KB
testcase_03 AC 267 ms
4,380 KB
testcase_04 AC 250 ms
4,380 KB
testcase_05 AC 272 ms
4,380 KB
testcase_06 AC 275 ms
4,384 KB
testcase_07 AC 252 ms
4,380 KB
testcase_08 AC 270 ms
4,444 KB
testcase_09 AC 290 ms
4,856 KB
testcase_10 AC 281 ms
4,864 KB
testcase_11 AC 287 ms
4,796 KB
testcase_12 AC 294 ms
4,932 KB
testcase_13 AC 276 ms
4,852 KB
testcase_14 AC 312 ms
4,956 KB
testcase_15 AC 275 ms
4,852 KB
testcase_16 AC 283 ms
4,384 KB
testcase_17 AC 275 ms
5,008 KB
testcase_18 AC 269 ms
5,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define NOMINMAX
#define TEST_MODE true

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES

#include "bits/stdc++.h"
#include <unordered_set>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define rep2(i, a, b) for (int i = (a); i < (int)(b); ++i)
#define rrep(i, n) for (int i = (n)-1; i >= 0; --i)
#define rrep2(i, a, b) for (int i = (a)-1; i >= (int)b; --i)
#define range(i, a, b, c) for (int i = a;             \
                                   c > 0 ? i < b : i > b; \
                                   i += c)
#define chmax(a, b) (a = (a) < (b) ? (b) : (a))
#define chmin(a, b) (a = (a) > (b) ? (b) : (a))
using ll = long long;
using ull = unsigned long long;
using ld = long double;
#define all(a) begin(a), end(a)
#define ifnot(a) if (not(a))
#define int long long

#ifdef LOCAL_ENV

#if TEST_MODE == true
const bool test = true;
#define dump(x) cerr << #x << " : " << (x) << " "
#define dumpl(x) dump(x) << endl
#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

int dx[] = { 1, 0, -1, 0 };
int dy[] = { 0, 1, 0, -1 };
const int INF = (int)1 << 60;
const int undefined = INF;
const ll INFL = (ll)1 << 60;
ll mod_n = (int)1e9 + 7;
const double eps = 1e-10;
typedef long double Real;
// return -1, 0, 1
int sgn(const Real &r) { return (r > eps) - (r < -eps); }
int sgn(const Real &a, const Real &b) { return sgn(a - b); }

//.....................
const int MAX = (int)2e5 + 5;

vector<string> split(const string &str, char sep)
{
	vector<string> v;
	stringstream ss(str);
	string buffer;
	while (getline(ss, buffer, sep))
	{
		v.push_back(buffer);
	}
	return v;
}

string join(const vector<string>& v, const string delim = "") {
	string s;
	if (!v.empty()) {
		s += v[0];
		for (decltype(v.size()) i = 1, c = v.size(); i < c; ++i) {
			s += delim;
			s += v[i];
		}
	}
	return s;
}

string operator * (const string& s, const int& n) {
	string res = "";
	rep(i, n) res += s;
	return res;
}

template <class InputIterator>
int sum(InputIterator begin, InputIterator end)
{
	return accumulate(begin, end, 0ll);
}

template<typename T>
T gcd(T a, T b)
{
	T c;
	while (a != 0) {
		c = a; a = b%a;  b = c;
	}
	return b;
}

template<typename T>
T lcm(T m, T n)
{
	return ((m / gcd(m, n)) * n);
}

template<typename T>
T bit_count(T N) {
	T cnt = 0;
	while (N) {
		if (N & 1) cnt++;
		N >>= 1;
	}
	return cnt;
}

template<typename T>
void print_vec(ostream& ostream, vector<T> a) {
	rep(i, a.size() - 1) ostream << a[i] << " ";
	ostream << a.back() << endl;
}

ll pow_n(ll x, ll n) {
	ll res = 1;
	while (n > 0) {
		if (n & 1) res = res * x;
		x = x * x;
		n >>= 1;
	}
	return res;
}

class Solver {
public:
	int H, W;

	bool grid_ng(int y, int x) {
		return y < 0 || y >= H || x < 0 || x >= W;
	}

	struct Point {
		int x, y, v;
		Point(int x_, int y_) : x(x_), y(y_) {}
		bool operator < (const Point& r) const {
			if (y != r.y) return y < r.y;
			return x < r.x;
		}
	};

	string str[5];
	int coin[5];
	int n[3];
	vector<vector<string>> str2;
	vector<multiset<string>> set1;
	int cnt[5][3] = {};

	int score(string& s) {
		rep(i, 5) {
			if (str[i] == s) return coin[i];
		}
		return 0;
	}

	int bf(int a[], int i, int j) {
		int b = a[j] + i;
		if (i == 3) b = a[j] + j;
		if (i == 4) b = a[j] + 2 - j;
		return b % n[j];
	}

	int score(int a[]) {
		int res = 0;
		rep(i, 5) {
			int b = bf(a, i, 0);
			string tmp = str2[0][b];
			rep2(j, 1, 3) {
				int b = bf(a, i, j);
				if (str2[j][b] != tmp) goto label1;
			}
			res += score(tmp);
		label1:;
		}
		return res;
	}

	double score() {
		int res = 0;
		int N = (int)1e6;
		rep(i, N) {
			int a[3];
			rep(i, 3) a[i] = rand() % n[i];
			res += score(a);
		}
		return (double)res / N;
	}

	void solve() {
		rep(i, 5) cin >> str[i] >> coin[i];
		str2.resize(3);
		set1.resize(3);
		rep(i, 3) {
			cin >> n[i];
			str2[i].resize(n[i]);
			rep(j, n[i]) {
				cin >> str2[i][j];
				set1[i].insert(str2[i][j]);
			}
		}
		cout << score() << endl;
		rep(i, 5) {
			int res = 1;
			rep(j, 3) {
				res *= set1[j].count(str[i]);
			}
			res *= 5;
			cout << res << endl;
		}
	}
};

signed main()
{
	srand((unsigned int)time(NULL));
	cout << fixed << setprecision(20);
	auto ptr = new Solver();
	ptr->solve();
	delete ptr;
	//while (true) {
	//	if (cin.eof() == true) break;
	//	auto ptr = new Solver();
	//	ptr->solve();
	//	delete ptr;
	//}
	return 0;
}
0