結果

問題 No.714 回転寿司屋のシミュレート
ユーザー maimai
提出日時 2017-04-14 22:32:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,639 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 173,612 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-07-30 09:52:06
合計ジャッジ時間 3,411 ms
ジャッジサーバーID
(参考情報)
judge11 / judge5
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"

#define ALL(v) (v).begin(),(v).end()

using namespace std;


int main() {
    int i, j, k;
    int x, y, a, b;

    int num_query;
    cin >> num_query;

    array<int, 30> tables;
    fill(ALL(tables), 0);

    map<string, array<int,30>> orders;

    for (int idx_query = 0; idx_query < num_query; ++idx_query) {
        int type;

        cin >> type;

        switch (type)
        {
        case 0: {
            // okyakusama has come
            int osuwari, m;
            cin >> osuwari >> m;

            assert(!tables[osuwari]);
            tables[osuwari] = true;

            for (i = 0; i < m; ++i) {
                string sushi;
                cin >> sushi;
                orders[sushi][osuwari] += 1;
            }

            break;
        }
        case 1: {
            // sushi has come

            string sushi;
            cin >> sushi;

            array<int, 30> &rail = orders[sushi];

            for (i = 1; i <= 20; ++i) {
                if (0 < rail[i]) {
                    cout << i << endl;
                    rail[i] -= 1;
                    break;
                }
            }
            if (i == 21) cout << -1 << endl;

            break;
        }
        case 2: {
            // okyakusama has gone
            int osuwari;

            cin >> osuwari;

            assert(tables[osuwari]);
            tables[osuwari] = false;

            for (auto& p : orders) {
                auto& order = p.second;
                order[osuwari] = 0;
            }

            break;
        }
        default:
            assert(type);
        }
    }
    return 0;
}
0