結果
問題 | No.618 labo-index |
ユーザー | ku_material_ro |
提出日時 | 2017-12-19 22:52:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,037 bytes |
コンパイル時間 | 874 ms |
コンパイル使用メモリ | 81,084 KB |
実行使用メモリ | 9,856 KB |
最終ジャッジ日時 | 2024-05-09 13:03:23 |
合計ジャッジ時間 | 13,533 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | TLE | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include <iostream> #include <math.h> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <functional> #define REP(i,n) for(int i=0;i<n;i++) typedef long long ll; using namespace std; int kaijo(int n){ int ans = 1; if (n != 0){ for (int i = 0; i < n; i++){ ans *= (n - i); } } else{ ans = 1; } return ans; } int main(){ int q; int c, x; int ans = 0; cin >> q; vector<ll> a; vector<ll> b; ll l[100000]; REP(i, q){ ans = 0; cin >> c >> x; if (c == 1){ a.push_back(x); } else if (c == 2){ a.erase(a.begin() + x - 1); } else{ int j = 0; for (auto itr = a.begin(); itr != a.end();itr++){ a[j] += x; j++; } } b = a; sort(b.begin(), b.end()); for (auto itr = b.begin(); itr != b.end(); itr++){ if (*itr <= distance(itr, b.end())){ ans = *itr; } else{ break; } } if (ans <= 0){ ans = distance(lower_bound(b.begin(), b.end(), 0), b.end()); } l[i] = ans; } REP(i, q){ cout << l[i] << endl; } return 0; }