結果

問題 No.714 回転寿司屋のシミュレート
ユーザー masamasa
提出日時 2019-01-30 11:56:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 2,532 bytes
コンパイル時間 1,345 ms
コンパイル使用メモリ 68,880 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 10:58:32
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
using namespace std;
template<class T> bool maxPointer(T& a, T b) { if (a < b) {a = b;return true;}return false;}
template<class T> int maxReturn(T a, T b) {if (a > b) {return a;} else {return b;}}
template<class T> bool minPointer(T& a, T b) {if (a < b) {a = b;return true;}return false;}

const int seatCount = 20;

class costmer {
    private :
        vector<string> wantList;
        bool existFlag = false;
    
    public :
    
        bool checkExist() {
            return existFlag;
        }
    
        void setExitst() {
            existFlag = true;
        }
        
        void setWantList(string item) {
            wantList.push_back(item);
        }
        
        bool searchWantList(string item) {
            vector<string>::iterator i = wantList.begin();
            vector<string>::iterator end = wantList.end();
            for (; i != end; i++) {
                if (item == *i) {
                    deleteWantList(i);
                    return true;
                }
            }
            return false;
        }
        
        void deleteWantList(vector<string>::iterator i) {
            wantList.erase(i);
        }
        
        void leave() {
            wantList.clear();
            existFlag = false;
        }
};

int main(void){
    int N;
    cin >> N;
    costmer costmerList[seatCount];
    
    for (int i = 0; i < N; i++) {
        int type,n,m,C;
        string B;
        cin >> type;

        switch (type) {
            case 0 :
                cin >> n >> m;
                
                costmerList[n-1].setExitst();
                for (int j = 0; j < m; j++) {
                    string wantitem;
                    cin >> wantitem;
                    costmerList[n-1].setWantList(wantitem);
                }
                break;
                
            case 1 :
                cin >> B;
                
                int ans;
                ans = -1;
                for (int j = 0; j < seatCount; j++) {
                    if (costmerList[j].checkExist()) {
                        if (costmerList[j].searchWantList(B)) {
                            ans = j + 1;
                            break;
                        } 
                    }
                }
                cout << ans << endl;
                break;
                
            case 2 :
                cin >> C;
                
                costmerList[C-1].leave();
                break;
        }
    }
}
0