結果

問題 No.9 モンスターのレベル上げ
ユーザー tailstails
提出日時 2024-12-13 10:51:38
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 1,393 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 25,856 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-13 10:51:41
合計ジャッジ時間 2,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 74 ms
6,820 KB
testcase_03 AC 32 ms
6,820 KB
testcase_04 AC 32 ms
6,816 KB
testcase_05 AC 22 ms
6,820 KB
testcase_06 AC 7 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 8 ms
6,820 KB
testcase_09 AC 64 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 61 ms
6,816 KB
testcase_12 AC 8 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 64 ms
6,816 KB
testcase_15 AC 68 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 46 ms
6,820 KB
testcase_18 AC 37 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘f3’:
main.c:7:59: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
    7 | #define wt1(v) ({char wbuf[64],*wp=wbuf+sizeof wbuf;wt(v);write(1,wp,wbuf+sizeof wbuf-wp);})
      |                                                           ^~~~~
main.c:84:9: note: in expansion of macro ‘wt1’
   84 |         wt1(z);
      |         ^~~
main.c: In function ‘main’:
main.c:91:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   91 |         _exit(0);
      |         ^~~~~
main.c:91: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 wt(v) ({unsigned _z=v;do*--wp=_z%10+48;while(_z/=10);})
#define wt1(v) ({char wbuf[64],*wp=wbuf+sizeof wbuf;wt(v);write(1,wp,wbuf+sizeof wbuf-wp);})
#define rep(v,e) for(typeof(e)v=0;v<e;++v)
#define chmax(v,a) (v=v>=(a)?v:(a))

int n;
unsigned a[1500];
unsigned q[1501];
unsigned b[1500];

void sort_aux(unsigned*a,unsigned*b){
	int c[256];
	for(int i=0;i<256;++i){
		c[i]=0;
	}
	for(int i=0;i<n;++i){
		++c[a[i]&255];
	}
	int t=0;
	for(int i=0;i<256;++i){
		int u=c[i];
		c[i]=t;
		t+=u;
	}
	for(int i=0;i<n;++i){
		b[c[a[i]&255]++]=a[i]>>8|a[i]<<24;
	}
}

void f1(){
	rd_init();
	n=rd();
	rep(i,n){
		a[i]=rd()<<16;
	}
	rep(i,n){
		b[i]=rd()>>1<<16|1;
	}
}

void f2(){
	sort_aux(a,q);
	sort_aux(q,a);
	sort_aux(a,q);
	sort_aux(q,a);
	q[n]=~0;
}

void f3(){
	int z=n;
	rep(h,n){
		rep(i,n){
			q[i]=a[i];
		}
		int w=0;
		rep(i,n){
			int j=h+i;
			j-=j>=n?n:0;
			unsigned t=q[0]+b[j];
			unsigned y=t&0xffff;
			if(y>=z){
				goto hoge;
			}
			chmax(w,y);
			int k=0;
			while(k*2<n-1){
				int c=q[k*2+1]<q[k*2+2]?k*2+1:k*2+2;
				if(t<=q[c]){
					break;
				}
				q[k]=q[c];
				k=c;
			}
			q[k]=t;
		}
		z=w;
		hoge:;
	}
	wt1(z);
}

int main(){
	f1();
	f2();
	f3();
	_exit(0);
}
0