結果
問題 | No.649 ここでちょっとQK! |
ユーザー | kotamanegi |
提出日時 | 2018-02-09 23:00:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,776 bytes |
コンパイル時間 | 1,679 ms |
コンパイル使用メモリ | 132,652 KB |
実行使用メモリ | 25,216 KB |
最終ジャッジ日時 | 2024-10-08 17:42:33 |
合計ジャッジ時間 | 6,220 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 250 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 145 ms
25,216 KB |
testcase_06 | AC | 48 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 3 ms
5,248 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 1 ms
5,248 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <utility> #include <functional> #include <cstring> #include <queue> #include <stack> #include <math.h> #include <iterator> #include <vector> #include <string> #include <set> #include <math.h> #include <iostream> #include<map> #include <iomanip> #include <time.h> #include <stdlib.h> #include <list> #include <typeinfo> #include <list> #include <set> #include <cassert> #include<fstream> #include <cstdlib> #define EVAL 1 using namespace std; #define Ma_PI 3.141592653589793 #define eps 0.00000001 #define LONG_INF 3000000000000000000 #define GOLD 1.61803398874989484820458 #define MAX_MOD 1000000007 #define REP(i,n) for(long long i = 0;i < n;++i) #define seg_size 524288 #define PI 3.1415926535 using namespace std; int main(){ #define int long long iostream::sync_with_stdio(false); int query,k; cin >> query >> k; set<long long> over_k; set<long long> under_k; map<long long,long long> over_wow,under_wow; long long now_mew = 0; REP(i,query){ long long a; cin >> a; if(a == 1){ cin >> a; if(now_mew+1LL < k){ under_k.insert(a); under_wow[a]++; now_mew++; }else{ now_mew++; auto hoge = under_k.end(); if(k == 1) goto foo; hoge--; if(*hoge <= a){ foo:; over_wow[a]++; over_k.insert(a); }else{ under_k.insert(a); under_wow[*hoge]--; if(under_wow[*hoge] == 0){ under_k.erase(*hoge); } over_k.insert(*hoge); over_wow[*hoge]++; } } }else{ if(now_mew >= k){ now_mew--; auto hoge = over_k.begin(); cout << *hoge << endl; over_wow[*hoge]--; if(over_wow[*hoge] == 0){ over_k.erase(*hoge); } }else{ cout << -1 << endl; } } } return 0; }