結果
問題 | No.618 labo-index |
ユーザー | ku_material_ro |
提出日時 | 2017-12-19 23:30:51 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,234 bytes |
コンパイル時間 | 942 ms |
コンパイル使用メモリ | 83,136 KB |
実行使用メモリ | 12,256 KB |
最終ジャッジ日時 | 2024-12-16 02:27:47 |
合計ジャッジ時間 | 135,404 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
11,296 KB |
testcase_01 | AC | 2 ms
11,296 KB |
testcase_02 | AC | 2 ms
11,300 KB |
testcase_03 | AC | 2 ms
11,424 KB |
testcase_04 | AC | 9 ms
11,300 KB |
testcase_05 | AC | 11 ms
11,300 KB |
testcase_06 | AC | 2 ms
11,300 KB |
testcase_07 | AC | 3 ms
11,428 KB |
testcase_08 | AC | 2 ms
11,432 KB |
testcase_09 | AC | 6 ms
11,424 KB |
testcase_10 | AC | 9 ms
11,304 KB |
testcase_11 | AC | 5 ms
11,432 KB |
testcase_12 | AC | 4 ms
11,296 KB |
testcase_13 | AC | 8 ms
11,432 KB |
testcase_14 | AC | 4 ms
11,296 KB |
testcase_15 | AC | 8 ms
11,296 KB |
testcase_16 | AC | 11 ms
11,552 KB |
testcase_17 | AC | 4 ms
11,556 KB |
testcase_18 | AC | 29 ms
6,816 KB |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | WA | - |
ソースコード
#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(){ ll q; ll c, x; ll ans = 0; cin >> q; vector<ll> a; vector<ll> b; ll l[100000]; int e[100000]; int cnt = 0; 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); e[cnt] = x; cnt++; } else{ int j = 0; for (auto itr = a.begin(); itr != a.end();itr++){ a[j] += x; j++; } } b = a; sort(e, e + cnt); //cout << "check" << endl; REP(i, cnt){ b.erase(b.begin() + (e[i] - 1 - i)); //cout << "check" << endl; } 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; }