結果
| 問題 |
No.662 スロットマシーン
|
| コンテスト | |
| ユーザー |
41Toame
|
| 提出日時 | 2018-09-07 14:44:06 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,378 bytes |
| コンパイル時間 | 1,390 ms |
| コンパイル使用メモリ | 160,100 KB |
| 実行使用メモリ | 13,824 KB |
| 最終ジャッジ日時 | 2024-11-27 12:56:43 |
| 合計ジャッジ時間 | 39,137 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 TLE * 12 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
#define ll long long int
#define rep(i,n) for( int i = 0; i < n; i++ )
#define rrep(i,n) for( int i = n; i >= 0; i-- )
#define REP(i,s,t) for( int i = s; i <= t; i++ )
#define RREP(i,s,t) for( int i = s; i >= t; i-- )
#define dump(x) cerr << #x << " = " << (x) << endl;
#define INF 2000000000
#define mod 1000000007
#define INF2 1000000000000000000
int main(void)
{
cin.tie(0);
ios::sync_with_stdio(false);
string str[5];
int coin[5];
rep(i, 5) cin >> str[i] >> coin[i];
int n[3];
int A[3][5000];
rep(i, 3) {
cin >> n[i];
rep(j, n[i]) {
string S; cin >> S;
rep(r, 5) if (S == str[r]) A[i][j] = r;
}
}
int cnt[5] = {};
rep(i, n[0]) {
rep(j, n[1]) {
rep(k, n[2]) {
int slot[3][3];
int ijk[3] = { i, j, k };
rep(s, 3) {
rep(t, 3) {
slot[s][t] = A[s][(ijk[s] + t) % n[s]];
}
}
rep(s, 3) {
if (slot[0][s] == slot[1][s] && slot[1][s] == slot[2][s]) {
cnt[slot[0][s]]++;
}
}
if (slot[0][0] == slot[1][1] && slot[1][1] == slot[2][2]) {
cnt[slot[0][0]]++;
}
if (slot[0][2] == slot[1][1] && slot[1][1] == slot[2][0]) {
cnt[slot[0][2]]++;
}
}
}
}
ll sum = 0;
rep(i, 5) {
sum += cnt[i] * coin[i];
}
cout << sum / (double)(n[0] * n[1] * n[2]) << endl;
rep(i, 5) {
cout << cnt[i] << endl;
}
return 0;
}
41Toame