結果

問題 No.714 回転寿司屋のシミュレート
ユーザー EsireEsire
提出日時 2018-08-08 15:26:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 1,791 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 85,616 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 01:39:37
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 3 ms
4,348 KB
testcase_04 AC 3 ms
4,348 KB
testcase_05 AC 5 ms
4,348 KB
testcase_06 AC 10 ms
4,348 KB
testcase_07 AC 13 ms
4,348 KB
testcase_08 AC 21 ms
4,348 KB
testcase_09 AC 8 ms
4,348 KB
testcase_10 AC 6 ms
4,348 KB
testcase_11 AC 7 ms
4,348 KB
testcase_12 AC 7 ms
4,348 KB
testcase_13 AC 7 ms
4,348 KB
testcase_14 AC 7 ms
4,348 KB
testcase_15 AC 6 ms
4,348 KB
testcase_16 AC 7 ms
4,348 KB
testcase_17 AC 6 ms
4,348 KB
testcase_18 AC 6 ms
4,348 KB
testcase_19 AC 6 ms
4,348 KB
testcase_20 AC 6 ms
4,348 KB
testcase_21 AC 6 ms
4,348 KB
testcase_22 AC 4 ms
4,348 KB
testcase_23 AC 4 ms
4,348 KB
testcase_24 AC 4 ms
4,348 KB
testcase_25 AC 3 ms
4,348 KB
testcase_26 AC 4 ms
4,348 KB
testcase_27 AC 3 ms
4,348 KB
testcase_28 AC 3 ms
4,348 KB
testcase_29 AC 4 ms
4,348 KB
testcase_30 AC 1 ms
4,348 KB
testcase_31 AC 2 ms
4,348 KB
testcase_32 AC 2 ms
4,348 KB
testcase_33 AC 2 ms
4,348 KB
testcase_34 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:46:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   46 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~
main.cpp:49:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |         scanf("%d", &m);
      |         ~~~~~^~~~~~~~~~
main.cpp:52:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   52 |                 scanf("%d %d", &t1, &t2);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~
main.cpp:75:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   75 |                 scanf("%d", &t1);
      |                 ~~~~~^~~~~~~~~~~

ソースコード

diff #

/*
g++ -std=c++11 -Wall -O2 -o main.exe main.cpp
main.exe
*/

#include <cstdio>
#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <functional>
#include <algorithm>
#include <complex>
#include <numeric>
//最大公約数: gcd()
//最小公倍数: lcm()

#define ll long long int

using namespace std;

bool flag1 = false, flag2 = true;

template <typename T>
void in(T &t){ //標準入力
    cin >> t;
    return;
}

template <typename T>
void sortasc(vector<T> &v){ //vectorを昇順にソート
    sort(v.begin(), v.end(), std::greater<T>());
    return;
}

template <typename T>
void sortdesc(vector<T> &v){ //vectorを降順にソート
    sort(v.begin(), v.end(), std::less<T>());
    return;
}

int main(){
    int n, m, t1, t2;
    string temp;
    vector< map<string, int> > sushi(21);
    scanf("%d", &n);

    for(int i = 0; i < n; i++){
        scanf("%d", &m);
        switch(m){
            case 0:
                scanf("%d %d", &t1, &t2);
                for(int j = 0; j < t2; j++){
                    cin >> temp;
                    sushi[t1][temp]++;
                }
                break;

            case 1:
                cin >> temp;
                for(int j = 1; j < 21; j++){
                    if(sushi[j][temp] > 0){
                        printf("%d\n", j);
                        sushi[j][temp]--;
                        j = -1;
                        flag1 = true;
                        break;
                    }
                }
                if(!flag1) printf("%d\n", -1);
                flag1 = false;
                break;

            case 2:
                scanf("%d", &t1);
                sushi[t1].erase(sushi[t1].begin(), sushi[t1].end());
                break;

        }
    }

    return 0;
}
0