結果

問題 No.714 回転寿司屋のシミュレート
ユーザー ceni1055ceni1055
提出日時 2018-07-13 23:02:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 175,104 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 11:22:57
合計ジャッジ時間 3,072 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <assert.h>

using namespace std;

map<int, vector<string>> p;

void process(int data)
{
	switch (data)
	{
	case 0:
	{
		int n, m;
		cin >> n >> m;
		p[n].resize(m);
		for (int i = 0; i < m; i++)
		{
			string a;
			cin >> a;
			p[n].push_back(a);
		}
		return;
	}
	case 1:
	{
		string b;
		cin >> b;
		for (int i = 1; i < 20; i++)
			for (int j = 0; j < p[i].size(); j++)
				if (b == p[i][j])
				{
					cout << i << endl;
					p[i].erase(p[i].begin() + j);
					return;
				}
		cout << -1 << endl;
		return;
	}
	case 2:
	{
		int c;
		cin >> c;
		p[c].resize(0);
		return;
	}
	}
}

int main()
{
	int n;
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		int d;
		cin >> d;
		process(d);
	}

	return 0;
}
0