結果
| 問題 |
No.714 回転寿司屋のシミュレート
|
| コンテスト | |
| ユーザー |
RTIA1227
|
| 提出日時 | 2018-07-13 22:51:46 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 1,208 bytes |
| コンパイル時間 | 746 ms |
| コンパイル使用メモリ | 82,436 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-09 05:27:05 |
| 合計ジャッジ時間 | 1,786 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 35 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<stack>
#include<set>
#include<climits>
#include<cstdlib>
#include<cmath>
#include<string>
using namespace std;
#define INF 1 << 29
#define LL long long int
LL const MOD = 1000000007;
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
vector<bool> onkyaku(21,false);
vector<vector<string>> eatlist(21);
LL n;
cin >> n;
for(int i = 0; i < n; i++){
LL d;
cin >> d;
if(d == 0){
LL ind;
cin >> ind;
LL listnum;
cin >> listnum;
for(int j = 0; j < listnum; j++){
string inp;
cin >> inp;
eatlist[ind].push_back(inp);
onkyaku[ind] = true;
}
}else if(d == 1){
string str;
cin >> str;
bool frag = true;
LL out = -1;
for(int j = 1; frag && j < 21; j++){
if(onkyaku[j]){
for(int k = 0;frag && k < eatlist[j].size(); k++){
if(str == eatlist[j][k]){
out = j;
frag = false;
eatlist[j].erase(eatlist[j].begin() + k);
}
}
}
}
cout << out << endl;
}else{
LL c;
cin >> c;
while(eatlist[c].size() > 0){
eatlist[c].erase(eatlist[c].begin());
}
}
}
return 0;
}
RTIA1227