結果
問題 | No.618 labo-index |
ユーザー | ふっぴー |
提出日時 | 2017-12-18 10:56:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,489 bytes |
コンパイル時間 | 2,224 ms |
コンパイル使用メモリ | 180,360 KB |
実行使用メモリ | 12,576 KB |
最終ジャッジ日時 | 2024-12-15 23:36:36 |
合計ジャッジ時間 | 21,294 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
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 | WA | - |
testcase_35 | TLE | - |
testcase_36 | WA | - |
testcase_37 | RE | - |
testcase_38 | AC | 2 ms
12,576 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define DEBUG(x) cout<<#x<<": "<<x<<endl; #define DEBUG_VEC(v) cout<<#v<<":";for(int i=0;i<v.size();i++) cout<<" "<<v[i]; cout<<endl typedef long long ll; #define vi vector<int> #define vl vector<ll> #define vii vector< vector<int> > #define vll vector< vector<ll> > #define vs vector<string> #define pii pair<int,int> #define pll pair<ll, ll> #define pis pair<int,string> #define psi pair<string,int> const int inf = 1000000001; const ll INF = 1e18 * 2; #define MOD 1000000007 #define mod 1000000009 #define pi 3.14159265358979323846 #define Sp(p) cout<<setprecision(15)<<fixed<<p<<endl; int dx[4] = { 1,0,-1,0 }, dy[4] = { 0,1,0,-1 }; int dx2[8] = { 1,1,0,-1,-1,-1,0,1 }, dy2[8] = { 0,1,1,1,0,-1,-1,-1 }; const ll none = -200000000000000; int main() { int q, i, j; scanf("%d", &q); int block = sqrt(q); vector<vector<pll> > lab; lab.push_back(vector<pll>()); vl add; int num = 0; //DEBUG(block) for (int unko = 0; unko < q; unko++) { int t, x; scanf("%d%d", &t, &x); cin >> t >> x; if (t == 1) { lab[num / block].push_back(pll(x, num)); if (lab[num / block].size() == block) { lab.push_back(vector<pll>()); add.push_back(0); } sort(lab[num / block].begin(), lab[num / block].end()); num++; } else if (t == 2) { x--; i = x / block; for (j = 0; j < lab[i].size(); j++) { if (lab[i][j].second == x) { lab[i][j].first += none; break; } } sort(lab[i].begin(), lab[i].end()); } else { for (i = 0; i < add.size(); i++) { add[i] += x; } for (j = 0; j < lab[lab.size() - 1].size(); j++) { lab[lab.size() - 1][j].first += x; } } ll left = 0, right = 100001; while (left + 1 < right) { ll mid = (left + right) / 2; int cnt = 0; for (i = 0; i < add.size(); i++) { int idx = lower_bound(lab[i].begin(), lab[i].end(), pll(mid - add[i], -1)) - lab[i].begin(); cnt += block - idx; } int idx = lower_bound(lab[lab.size() - 1].begin(), lab[lab.size() - 1].end(), pll(mid, -1)) - lab[lab.size() - 1].begin(); cnt += lab[lab.size() - 1].size() - idx; if (cnt >= mid) { left = mid; } else { right = mid; } } cout << left << endl; /* for (i = 0; i < lab.size(); i++) { for (j = 0; j < lab[i].size(); j++) { printf("(%lld, %lld) ", lab[i][j].first, lab[i][j].second); } cout << endl; } */ } }