結果
問題 | No.649 ここでちょっとQK! |
ユーザー | Kenta Nakajima |
提出日時 | 2020-06-09 18:51:18 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,804 bytes |
コンパイル時間 | 424 ms |
コンパイル使用メモリ | 31,104 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 18:29:18 |
合計ジャッジ時間 | 3,697 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 33 ms
5,376 KB |
testcase_04 | AC | 59 ms
5,376 KB |
testcase_05 | AC | 52 ms
5,376 KB |
testcase_06 | AC | 54 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 0 ms
5,376 KB |
testcase_12 | AC | 27 ms
5,376 KB |
testcase_13 | AC | 27 ms
5,376 KB |
testcase_14 | AC | 26 ms
5,376 KB |
testcase_15 | AC | 30 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 32 ms
5,376 KB |
testcase_18 | AC | 35 ms
5,376 KB |
testcase_19 | AC | 39 ms
5,376 KB |
testcase_20 | AC | 42 ms
5,376 KB |
testcase_21 | AC | 47 ms
5,376 KB |
testcase_22 | AC | 48 ms
5,376 KB |
testcase_23 | AC | 51 ms
5,376 KB |
testcase_24 | AC | 55 ms
5,376 KB |
testcase_25 | AC | 57 ms
5,376 KB |
testcase_26 | AC | 62 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 21 ms
5,376 KB |
testcase_31 | AC | 22 ms
5,376 KB |
testcase_32 | AC | 1 ms
5,376 KB |
testcase_33 | AC | 1 ms
5,376 KB |
testcase_34 | AC | 1 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <stdint.h> // int64_t #define max(a,b) ((a) > (b) ? (a) : (b)) #define min(a,b) ((a) > (b) ? (b) : (a)) int64_t get_int(void) { int64_t num; scanf("%lld", &num); return num; } int get_int2(int *a1, int *a2) { scanf("%d %d", a1, a2); return 0; } #define QUERY_MAX 200000 #define HEAP_MAX (QUERY_MAX+50) static int64_t max_heap[HEAP_MAX]; static int hmax_idx = 1; void swap(int64_t *a1, int64_t *a2) { int64_t tmp = *a1; *a1 = *a2; *a2 = tmp; } int maxcmp(int64_t a1, int64_t a2) { return a1 > a2; } void enqueue_max(int64_t val) { int node = hmax_idx; max_heap[hmax_idx++] = val; int parent; while((parent = node / 2)) { if(maxcmp(max_heap[parent], max_heap[node])) break; swap(&max_heap[parent], &max_heap[node]); node = parent; } return; } int64_t dequeue_max(void) { int64_t ans = max_heap[1]; max_heap[1] = max_heap[--hmax_idx]; int node = 1; while(1) { int this = node; int left = node * 2; int right = node * 2 + 1; if(left < hmax_idx && !maxcmp(max_heap[this], max_heap[left])) { this = left; } if(right < hmax_idx && !maxcmp(max_heap[this], max_heap[right])) { this = right; } if(this == node) break; swap(&max_heap[this], &max_heap[node]); node = this; } return ans; } // min heap static int64_t min_heap[HEAP_MAX]; static int hmin_idx = 1; int mincmp(int64_t a1, int64_t a2) { return a1 < a2; } void enqueue_min(int64_t val) { int node = hmin_idx; min_heap[hmin_idx++] = val; int parent; while((parent = node / 2)) { if(mincmp(min_heap[parent], min_heap[node])) break; swap(&min_heap[parent], &min_heap[node]); node = parent; } return; } int64_t dequeue_min(void) { int64_t ans = min_heap[1]; min_heap[1] = min_heap[--hmin_idx]; int node = 1; while(1) { int this = node; int left = node * 2; int right = node * 2 + 1; if(left < hmin_idx && !mincmp(min_heap[this], min_heap[left])) { this = left; } if(right < hmin_idx && !mincmp(min_heap[this], min_heap[right])) { this = right; } if(this == node) break; swap(&min_heap[this], &min_heap[node]); node = this; } return ans; } int size = 0; int get_size(void) { return size; } // max_heap[1] <= min_heap[1] void add(int64_t val, int k) { int64_t mmax = max_heap[1]; if(size < k) { enqueue_max(val); size++; return; } if(val >= mmax) { enqueue_min(val); } else { enqueue_max(val); // move right int64_t nval = dequeue_max(); enqueue_min(nval); } size++; } int64_t find_and_delete(int k) { if(size < k) { return -1; } int64_t ans = dequeue_max(); // move left int64_t nval = dequeue_min(); enqueue_max(nval); size--; return ans; } enum query { QUERY_ADD = 1, QUERY_GETK = 2 }; int main(void) { int num, k; get_int2(&num, &k); int i; int64_t ans[QUERY_MAX]; int aidx = 0; for(i = 0; i < num; i++) { int type = get_int(); switch(type) { case QUERY_ADD: { int64_t val = get_int(); add(val, k); } break; case QUERY_GETK: { ans[aidx++] = find_and_delete(k); } break; default: break; } } for(i = 0; i < aidx; i++) { printf("%lld\n", ans[i]); } return 0; }