結果
| 問題 |
No.24 数当てゲーム
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2014-11-23 17:14:39 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 1,216 bytes |
| コンパイル時間 | 1,068 ms |
| コンパイル使用メモリ | 72,596 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2025-01-02 20:24:37 |
| 合計ジャッジ時間 | 1,181 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <vector>
#include <string>
#include <algorithm>
#include <cmath>
#define MAX_N 10
int point_table[MAX_N];
int main(){
int n;
int* a;
int* b;
int* c;
int* d;
std::cin >> n;
a =(int*)malloc(sizeof(int)*n);
b =(int*)malloc(sizeof(int)*n);
c =(int*)malloc(sizeof(int)*n);
d =(int*)malloc(sizeof(int)*n);
std::vector<std::string> r;
std::string str;
for(register int i = 0; i < n; i++){
std::cin >> a[i] >> b[i] >> c[i] >> d[i] >> str;
r.push_back(str);
}
for(register int i =0; i < MAX_N; i++){
point_table[i] = 1;
}
//init
for(register int i = 0; i < n; i++){
if(r[i] == "NO"){
point_table[a[i]]*=0;
point_table[b[i]]*=0;
point_table[c[i]]*=0;
point_table[d[i]]*=0;
}
else{
point_table[a[i]]*=2;
point_table[b[i]]*=2;
point_table[c[i]]*=2;
point_table[d[i]]*=2;
}
}
int tmp = -1;
int tmp_val = -1;
for(register int i =0; i < MAX_N; i++){
if(point_table[i] > tmp){
tmp = point_table[i];
tmp_val = i;
}
}
std::cout << tmp_val << std::endl;
}