結果
問題 | No.649 ここでちょっとQK! |
ユーザー | akakimidori |
提出日時 | 2018-12-23 04:22:59 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,650 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 31,104 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 10:27:14 |
合計ジャッジ時間 | 3,882 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 23 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 133 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 1 ms
6,944 KB |
testcase_34 | AC | 1 ms
6,940 KB |
testcase_35 | AC | 1 ms
6,940 KB |
ソースコード
#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct binaryHeap{ void *h; size_t heapSize; size_t maxSize; size_t size; int (*cmp)(const void *,const void *); } heap; heap* newHeap(const size_t size,int (*cmpF)(const void *,const void *)){ const size_t maxSize=1; heap *res=(heap *)malloc(sizeof(heap)); res->h=malloc(size*(maxSize+1)); res->heapSize=0; res->maxSize=maxSize; res->size=size; res->cmp=cmpF; return res; } int isEmpty(const heap *h){ return h->heapSize==0; } void freeHeap(heap *h){ free(h->h); free(h); return; } void initHeap(heap *h){ h->heapSize=0; return; } inline void heapFunc_swap(void * restrict a,void * restrict b,void * restrict tmp,size_t size){ memcpy(tmp,a,size); memcpy(a,b,size); memcpy(b,tmp,size); return; } void push(heap *q,const void *p){ if(q->heapSize==q->maxSize){ q->h=realloc(q->h,q->size*(2*q->maxSize+1)); q->maxSize*=2; } q->heapSize+=1; char *h=(char *)(q->h); int k=q->heapSize; const size_t size=q->size; int (*cmp)(const void *,const void *)=q->cmp; memcpy(h+k*size,p,size); while(k>1){ size_t parent=k/2; if(cmp(h+parent*size,h+k*size)<=0) return; heapFunc_swap(h+parent*size,h+k*size,h,size); k=parent; } return; } void pop(heap *q,void *res){ char *h=(char *)(q->h); const size_t size=q->size; if(res!=NULL) memcpy(res,h+size,size); memcpy(h+size,h+size*q->heapSize,size); q->heapSize-=1; int (*cmp)(const void *,const void *)=q->cmp; const size_t n=q->heapSize; size_t k=1; while(2*k+1<=n){ size_t next=cmp(h+2*k*size,h+(2*k+1)*size)<=0?2*k:2*k+1; if(cmp(h+k*size,h+next*size)<=0) return; heapFunc_swap(h+k*size,h+next*size,h,size); k=next; } if(2*k<=n && cmp(h+k*size,h+2*k*size)>0) heapFunc_swap(h+k*size,h+2*k*size,h,size); return; } void top(const heap *q,void *res){ memcpy(res,(char *)q->h+q->size,q->size); return; } typedef long long int int64; int cmpMin(const void *a,const void *b){ return *(int64 *)a<=*(int64 *)b; } int cmpMax(const void *a,const void *b){ return *(int64 *)a>=*(int64 *)b; } void run(void){ int q,k; scanf("%d%d",&q,&k); heap *small=newHeap(sizeof(int64),cmpMax); heap *large=newHeap(sizeof(int64),cmpMin); while(q--){ int c; scanf("%d",&c); if(c==1){ int64 v; scanf("%lld",&v); push(small,&v); if(small->heapSize>=k){ pop(small,&v); push(large,&v); } } else if(isEmpty(large)){ printf("-1\n"); } else { int64 v; pop(large,&v); printf("%lld\n",v); } } return; } int main(void){ run(); return 0; }