結果

問題 No.649 ここでちょっとQK!
ユーザー akakimidoriakakimidori
提出日時 2018-09-09 16:18:51
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 747 ms / 3,000 ms
コード長 1,389 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 22,144 KB
実行使用メモリ 246,272 KB
最終ジャッジ日時 2024-06-06 03:24:22
合計ジャッジ時間 10,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 23 ms
5,376 KB
testcase_04 AC 127 ms
14,080 KB
testcase_05 AC 127 ms
14,080 KB
testcase_06 AC 101 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 349 ms
126,848 KB
testcase_13 AC 358 ms
126,720 KB
testcase_14 AC 327 ms
117,120 KB
testcase_15 AC 359 ms
126,848 KB
testcase_16 AC 344 ms
126,848 KB
testcase_17 AC 393 ms
138,752 KB
testcase_18 AC 420 ms
150,912 KB
testcase_19 AC 458 ms
162,560 KB
testcase_20 AC 499 ms
174,848 KB
testcase_21 AC 536 ms
186,752 KB
testcase_22 AC 585 ms
198,784 KB
testcase_23 AC 630 ms
210,560 KB
testcase_24 AC 663 ms
222,592 KB
testcase_25 AC 712 ms
234,496 KB
testcase_26 AC 747 ms
246,272 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 81 ms
6,272 KB
testcase_31 AC 76 ms
6,272 KB
testcase_32 AC 0 ms
5,376 KB
testcase_33 AC 0 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘run’:
main.c:50:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   50 |   scanf("%d%d",&q,&k);
      |   ^~~~~~~~~~~~~~~~~~~
main.c:56:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   56 |     scanf("%d",&c);
      |     ^~~~~~~~~~~~~~
main.c:59:7: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   59 |       scanf("%lld",&v);
      |       ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>

typedef long long int int64;

typedef struct segmentNode{
  int v;
  struct segmentNode *left,*right;
} segNode;

segNode* newNode(void){
  segNode *res=(segNode *)malloc(sizeof(segNode));
  res->v=0;
  res->left=NULL;
  res->right=NULL;
  return res;
}

int eval(segNode *p){
  return p==NULL?0:p->v;
}

segNode* update(segNode *p,int64 l,int64 r,const int64 index,const int v){
  if(p==NULL) p=newNode();
  if(l==index && r==index){
    p->v+=v;
    return p;
  }
  int64 m=(l+r)/2;
  if(index<=m){
    p->left=update(p->left,l,m,index,v);
  } else {
    p->right=update(p->right,m+1,r,index,v);
  }
  p->v=eval(p->left)+eval(p->right);
  return p;
}

int64 search(segNode *p,int64 l,int64 r,int k){
  if(l==r){
    return eval(p)>=k?l:-1;
  }
  if(eval(p)<k) return -1;
  int64 m=(l+r)/2;
  return eval(p->left)<k?search(p->right,m+1,r,k-eval(p->left)):search(p->left,l,m,k);
}

void run(void){
  int q,k;
  scanf("%d%d",&q,&k);
  int64 l=0;
  int64 r=1000000000000000000LL;
  segNode *root=NULL;
  while(q--){
    int c;
    scanf("%d",&c);
    if(c==1){
      int64 v;
      scanf("%lld",&v);
      root=update(root,l,r,v,1);
    } else if(eval(root)<k){
      printf("-1\n");
    } else {
      int64 v=search(root,l,r,k);
      printf("%lld\n",v);
      root=update(root,l,r,v,-1);
    }
  }
  return;
}

int main(void){
  run();
  return 0;
}
0