結果

問題 No.2195 AND Set
ユーザー tailstails
提出日時 2024-12-13 11:52:51
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,444 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 27,008 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-12-13 11:52:53
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 18 ms
9,344 KB
testcase_03 AC 19 ms
9,088 KB
testcase_04 AC 18 ms
9,344 KB
testcase_05 AC 20 ms
9,088 KB
testcase_06 AC 21 ms
8,960 KB
testcase_07 AC 18 ms
8,320 KB
testcase_08 AC 22 ms
8,832 KB
testcase_09 AC 19 ms
8,320 KB
testcase_10 AC 32 ms
9,216 KB
testcase_11 AC 29 ms
9,216 KB
testcase_12 AC 29 ms
9,216 KB
testcase_13 AC 29 ms
9,344 KB
testcase_14 AC 30 ms
9,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:78:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   78 |         write(1,wbuf,wp-wbuf);
      |         ^~~~~
main.c:79:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   79 |         _exit(0);
      |         ^~~~~
main.c:79:9: warning: incompatible implicit declaration of built-in function ‘_exit’ [-Wbuiltin-declaration-mismatch]

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

#define rd_init() char*rp=({char*mmap();mmap(0l,1l<<25,1,2,0,0ll);})
#define rd() ({int _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define WTHI(v) {unsigned _z=v,_n=0;long _d=0;while(++_n,_d=_d<<8|0x30|_z%10,_z/=10);*(long*)wp=_d;wp+=_n;}
#define WTLO(v) {unsigned _z=v,_n=8;long _d=0;while(_d=_d<<8|0x30|_z%10,_z/=10,--_n);*(long*)wp=_d;wp+=8;}
#define wt(v) if(v>=100000000){WTHI(v/100000000);WTLO(v);}else{WTHI(v);}
#define rep(v,e) for(typeof(e)v=0;v<e;++v)
#define rrep(v,e) for(typeof(e)v=e;v--;)
#define repeat(e) for(typeof(e)_=e;_--;)

char wbuf[1<<25];

#define HASH_N 800011
unsigned hash[HASH_N];

int hash_add(unsigned x){
	int h=x%HASH_N;
	while(1){
		if(hash[h]==0){
			hash[h]=x;
			return h;
		}
		if(hash[h]==x){
			return h;
		}
		h=h+1;
		h=h>=HASH_N?0:h;
	}
}

char c[HASH_N];
int a[31];

int main(){
	rd_init();
	int q=rd();
	char*wp=wbuf;
	repeat(q){
		int t=*rp; rp+=2;
		if(t=='1'){
			unsigned x=rd();
			int h=hash_add(x+1);
			if(!c[h]){
				c[h]=1;
				rep(i,31){
					a[i]+=~x&1;
					x>>=1;
				}
			}
		}
		if(t=='2'){
			unsigned x=rd();
			int h=hash_add(x+1);
			if(c[h]){
				c[h]=0;
				rep(i,31){
					a[i]-=~x&1;
					x>>=1;
				}
			}
		}
		if(t=='3'){
			unsigned v=0;
			rrep(i,31){
				v=v<<1|!a[i];
			}
			if(v&1<<30){
				*wp++='-';
				*wp++='1';
			}else{
				wt(v);
			}
			*wp++='\n';
		}
	}
	write(1,wbuf,wp-wbuf);
	_exit(0);
}
0