結果

問題 No.2804 Fixer And Ratism
ユーザー tobbietobbie
提出日時 2024-07-27 17:38:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,476 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 190,100 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-27 17:38:10
合計ジャッジ時間 8,341 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 91 ms
5,376 KB
testcase_04 AC 46 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 79 ms
5,376 KB
testcase_07 AC 30 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 22 ms
5,376 KB
testcase_11 AC 175 ms
5,376 KB
testcase_12 AC 75 ms
5,376 KB
testcase_13 AC 32 ms
5,376 KB
testcase_14 AC 75 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 67 ms
5,376 KB
testcase_17 AC 50 ms
5,376 KB
testcase_18 AC 109 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 218 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 267 ms
5,376 KB
testcase_24 AC 145 ms
5,376 KB
testcase_25 AC 297 ms
5,376 KB
testcase_26 AC 177 ms
5,376 KB
testcase_27 AC 146 ms
5,376 KB
testcase_28 AC 278 ms
5,376 KB
testcase_29 AC 169 ms
5,376 KB
testcase_30 AC 175 ms
5,376 KB
testcase_31 AC 146 ms
5,376 KB
testcase_32 AC 220 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)

struct Member {
  string s;
  int r;
  Member(string s, int r) : s(s), r(r) {}
  bool operator<(const Member &rhs) const {
    return r < rhs.r;
  }
  bool operator==(const Member &rhs) const {
    return s == rhs.s;
  }
};

int main() {
  int n, q;
  cin >> n >> q;
  vector<Member> user, used;
  map<string, int> member;
  rep(i, q) {
    int d;
    cin >> d;
    if (d == 1) {
      string s;
      int r;
      cin >> s >> r;
      user.push_back(Member(s, r));
      member[s] = r;
    }
    if (d == 2) {
      int x;
      cin >> x;
      n -= x;
    }
    if (d == 3) {
      string s;
      int x;
      cin >> s >> x;
      if (find(user.begin(), user.end(), Member(s, member[s])) !=
	  user.end()) {
	Member mem = Member(s, member[s]);
	user.erase(find(user.begin(), user.end(), mem));
	used.push_back(mem);
      }
      n += x;
    }
    sort(user.begin(), user.end());
    sort(used.begin(), used.end());
    vector<Member> leave;
    while ((int)user.size() + (int)used.size() > n) {
      if ((int)user.size() == 0)
	break;
      leave.push_back(user[0]);
      user.erase(user.begin());
    }
    if ((int)user.size() == 0) {
      while ((int)used.size() > n) {
	leave.push_back(used[0]);
	used.erase(used.begin());
      }
    }
    sort(leave.begin(), leave.end());
    for (Member m : leave)
      cout << m.s << endl;
    leave.clear();
  }
  return 0;
}
0