結果

問題 No.1891 Static Xor Range Composite Query
ユーザー tailstails
提出日時 2022-04-04 20:05:27
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 1,349 bytes
コンパイル時間 1,242 ms
コンパイル使用メモリ 33,152 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-05-04 05:30:15
合計ジャッジ時間 6,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
40,288 KB
testcase_01 AC 20 ms
40,288 KB
testcase_02 AC 19 ms
40,420 KB
testcase_03 AC 23 ms
40,420 KB
testcase_04 AC 22 ms
40,288 KB
testcase_05 AC 20 ms
40,292 KB
testcase_06 AC 20 ms
40,292 KB
testcase_07 AC 21 ms
40,292 KB
testcase_08 AC 20 ms
40,292 KB
testcase_09 AC 21 ms
40,288 KB
testcase_10 AC 21 ms
40,296 KB
testcase_11 AC 22 ms
40,436 KB
testcase_12 AC 20 ms
40,436 KB
testcase_13 AC 21 ms
40,436 KB
testcase_14 AC 22 ms
40,440 KB
testcase_15 AC 22 ms
40,432 KB
testcase_16 AC 21 ms
40,308 KB
testcase_17 AC 22 ms
40,436 KB
testcase_18 AC 21 ms
40,432 KB
testcase_19 AC 20 ms
40,312 KB
testcase_20 AC 21 ms
40,436 KB
testcase_21 AC 141 ms
53,824 KB
testcase_22 AC 137 ms
52,992 KB
testcase_23 AC 140 ms
54,060 KB
testcase_24 AC 134 ms
52,992 KB
testcase_25 AC 139 ms
53,140 KB
testcase_26 AC 133 ms
52,992 KB
testcase_27 AC 136 ms
53,220 KB
testcase_28 AC 127 ms
52,992 KB
testcase_29 AC 139 ms
54,284 KB
testcase_30 AC 142 ms
52,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:67:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   67 |         write(1,wbuf,wp-wbuf);
      |         ^~~~~
main.c:68:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   68 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

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

#define rd_skip() while(*rp++>=48)
#define rd() ({long _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})

#define WTHI(v) {ulong _z=v,_n=0,_d=0;while(++_n,_d=_d<<8|0x30|_z%10,_z/=10);*(ulong*)wp=_d;wp+=_n;}
#define WTLO(v) {ulong _z=v,_n=8,_d=0;while(_d=_d<<8|0x30|_z%10,_z/=10,--_n);*(ulong*)wp=_d;wp+=8;}
#define wt(v) if(v>=100000000){WTHI(v/100000000);WTLO(v);}else{WTHI(v);}
#define rep(v,e) for(long v=0;v<e;++v)

typedef unsigned long ulong;
char wbuf[1<<25];

#define MD 998244353

struct AB {
	unsigned a,b;
};

#define F(r,x,y) ({ulong a=(ulong)y.a*(ulong)x.a,b=(ulong)y.a*(ulong)x.b+(ulong)y.b;r.a=a%MD;r.b=b%MD;})

struct AB ab[19][262144];

int main(){
	long n;
	char*mmap();
	char*rp=mmap(0l,1l<<25,1,2,0,0ll);
	n=rd();
	rd_skip();
	rep(i,n){
		ab[0][i].a=rd();
		ab[0][i].b=rd();
	}
	rep(d,18){
		ulong m=1<<d;
		rep(i,262144){
			F(ab[d+1][i],ab[d][i],ab[d][i^m]);
		}
	}
	char*wp=wbuf;
	while(*rp){
		long l=rd();
		long r=rd();
		ulong p=rd();
		long x=rd();
		struct AB u; u.a=1; u.b=0;
		struct AB v; v.a=1; v.b=0;
		long d=0;
		while(l<r){
			ulong m=1<<d;
			if(l&m){
				F(u,u,ab[d][l^p]);
				l+=m;
			}
			if(r&m){
				r-=m;
				F(v,ab[d][r^p],v);
			}
			++d;
		}
		F(u,u,v);
		ulong z=(u.a*x+u.b)%MD;
		wt(z);
		*wp++='\n';
	}
	write(1,wbuf,wp-wbuf);
	_exit(0);
}
0