結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー tailstails
提出日時 2023-05-24 17:29:24
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 27,520 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-06-06 06:20:35
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 53 ms
5,376 KB
testcase_02 AC 60 ms
5,376 KB
testcase_03 AC 56 ms
5,376 KB
testcase_04 AC 57 ms
5,376 KB
testcase_05 AC 58 ms
5,376 KB
testcase_06 AC 61 ms
5,376 KB
testcase_07 AC 61 ms
5,376 KB
testcase_08 AC 63 ms
5,504 KB
testcase_09 AC 63 ms
5,376 KB
testcase_10 AC 57 ms
5,376 KB
testcase_11 AC 60 ms
5,376 KB
testcase_12 AC 61 ms
5,376 KB
testcase_13 AC 61 ms
5,376 KB
testcase_14 AC 61 ms
5,376 KB
testcase_15 AC 60 ms
5,376 KB
testcase_16 AC 60 ms
5,376 KB
testcase_17 AC 61 ms
5,376 KB
testcase_18 AC 61 ms
5,376 KB
testcase_19 AC 61 ms
5,376 KB
testcase_20 AC 60 ms
5,376 KB
testcase_21 AC 68 ms
5,376 KB
testcase_22 AC 69 ms
5,376 KB
testcase_23 AC 68 ms
5,376 KB
testcase_24 AC 67 ms
5,376 KB
testcase_25 AC 68 ms
5,376 KB
testcase_26 AC 68 ms
5,376 KB
testcase_27 AC 69 ms
5,376 KB
testcase_28 AC 68 ms
5,504 KB
testcase_29 AC 68 ms
5,376 KB
testcase_30 AC 69 ms
5,504 KB
testcase_31 AC 23 ms
5,376 KB
testcase_32 AC 23 ms
5,376 KB
testcase_33 AC 23 ms
5,376 KB
testcase_34 AC 31 ms
5,376 KB
testcase_35 AC 31 ms
5,376 KB
testcase_36 AC 31 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 59 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:91:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   91 |         write(1,wbuf,wp-wbuf);
      |         ^~~~~
main.c:92:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   92 |         _exit(0);
      |         ^~~~~
main.c:92: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_skip() while(*rp++>=48)
#define rd() ({int _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define rep(v,e) for(typeof(e) v=0;v<e;++v)

typedef unsigned long ulong;

#define FWSIZE (1<<18)
int fw[FWSIZE];
int fwsize;
int fwlim;

static inline
void fw_add(int a,int v){
	if(a==0){
		fw[0]+=v;
	}else{
		while(fw[a]+=v,a+=a&-a,a<fwsize);
	}
}

void fw_build(){
	for(int a=1;a<fwlim-1;++a){
		fw[a+(a&-a)]+=fw[a];
	}
}

static inline
int fw_kth(int k){
	k-=fw[0];
	if(k<0)return 0;
	int a=0;
	for(int m=fwlim;m>>=1;){
		if(fw[a+m]<=k){
			k-=fw[a+m];
			a+=m;
		}
	}
	return a+1;
}

char wbuf[1<<25];
char x[1<<18],y[1<<18];

int main(){
	rd_init();
	rd_skip();
	char*wp=wbuf;
	while(*rp){
		int n=rd();
		fwsize=n;
		for(fwlim=1;fwlim<n;fwlim<<=1);
		rep(i,n)fw[i]=1;
		fw_build();
		rep(i,n){
			int c=*rp;
			if(c=='T'){
				rp+=5;
				x[i]=1;
			}else{
				rp+=6;
				x[i]=0;
			}
		}
		rep(i,n-1){
			int c=*rp;
			y[i+1]=c;
			rp+=c=='o'?3:4;
		}
		rep(i,n-1){
			int s=rd();
			int a=fw_kth(s-1);
			int b=fw_kth(s);
			fw_add(b,-1);
			if(y[b]=='a') x[a]&=x[b];
			if(y[b]=='o') x[a]|=x[b];
			if(y[b]=='x') x[a]^=x[b];
			if(y[b]=='i') x[a]=!x[a]|x[b];
		}
		if(x[0]){
			*(ulong*)wp=0x0a65757254l; // "True\n"
			wp+=5;
		}else{
			*(ulong*)wp=0x0a65736c6146l; // "False\n"
			wp+=6;
		}
	}
	write(1,wbuf,wp-wbuf);
	_exit(0);
}
0