結果

問題 No.618 labo-index
ユーザー tailstails
提出日時 2017-12-18 09:56:17
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 466 ms / 6,000 ms
コード長 938 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-05-09 11:01:58
合計ジャッジ時間 5,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 116 ms
11,256 KB
testcase_20 AC 150 ms
11,136 KB
testcase_21 AC 138 ms
11,008 KB
testcase_22 AC 137 ms
10,880 KB
testcase_23 AC 141 ms
11,136 KB
testcase_24 AC 134 ms
11,136 KB
testcase_25 AC 148 ms
11,124 KB
testcase_26 AC 143 ms
10,956 KB
testcase_27 AC 138 ms
10,624 KB
testcase_28 AC 115 ms
11,392 KB
testcase_29 AC 135 ms
11,136 KB
testcase_30 AC 126 ms
11,008 KB
testcase_31 AC 144 ms
10,800 KB
testcase_32 AC 143 ms
11,052 KB
testcase_33 AC 130 ms
11,216 KB
testcase_34 AC 390 ms
20,864 KB
testcase_35 AC 466 ms
5,376 KB
testcase_36 AC 230 ms
5,376 KB
testcase_37 AC 370 ms
11,264 KB
testcase_38 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:40:1: warning: return type defaults to 'int' [-Wimplicit-int]
   40 | main(){
      | ^~~~
main.c: In function 'main':
main.c:43:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
   43 |         scanf("%d",&x);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | typedef long long ll;
main.c:43:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
   43 |         scanf("%d",&x);
      |         ^~~~~
main.c:43:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:70:25: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
   70 |                         printf("%d\n",l);
      |                         ^~~~~~
main.c:70:25: note: include '<stdio.h>' or provide a declaration of 'printf'
main.c:70:25: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
main.c:70:25: note: include '<stdio.h>' or provide a declaration of 'printf'

ソースコード

diff #

typedef long long ll;

typedef struct {
	int c,l,r;
} Node;

Node ns[6000000];
int nn;

void add(int i,ll v,ll l,ll r,int inc){
	Node*p=ns+i;
	p->c+=inc;
	if(l<r-1){
		ll c=(l+r)/2;
		if(v<c){
			if(!p->l){
				p->l=++nn;
			}
			add(p->l,v,l,c,inc);
		}else{
			if(!p->r){
				p->r=++nn;
			}
			add(p->r,v,c,r,inc);
		}
	}
}

int count(int i,ll v,ll l,ll r){
	Node*p=ns+i;
	ll c=(l+r)/2;
	return v<c?
		(p->l?count(p->l,v,l,c):0)+(p->r?ns[p->r].c:0):
		(p->r?count(p->r,v,c,r):0);
}

ll a[100010];
int n;

main(){
	ll offset=1ll<<49;
	int t,x;
	scanf("%d",&x);

	for(;~scanf("%d%d",&t,&x);){
		if(t==1){
			ll y=x+offset;
			a[++n]=y;
			add(0,y,0,1ll<<50,1);
		}
		if(t==2){
			ll y=a[x];
			add(0,y,0,1ll<<50,-1);
		}
		if(t==3){
			offset-=x;
		}

		{
			int l=0;
			int r=ns[0].c+1;
			while(l<r-1){
				int c=(l+r)/2;
				if(count(0,c+offset-1,0,1ll<<50)>=c){
					l=c;
				}else{
					r=c;
				}
			}
			printf("%d\n",l);
		}
	}
}
0