結果

問題 No.2803 Bocching Star
ユーザー tailstails
提出日時 2024-07-16 16:00:47
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,242 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 25,728 KB
実行使用メモリ 10,532 KB
最終ジャッジ日時 2024-07-16 16:00:50
合計ジャッジ時間 3,276 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 10 ms
10,532 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 9 ms
6,784 KB
testcase_10 AC 10 ms
6,912 KB
testcase_11 AC 11 ms
7,040 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 8 ms
5,760 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 10 ms
7,040 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 9 ms
5,888 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 11 ms
7,168 KB
testcase_24 AC 12 ms
7,936 KB
testcase_25 AC 11 ms
7,680 KB
testcase_26 AC 12 ms
7,936 KB
testcase_27 AC 12 ms
7,296 KB
testcase_28 AC 12 ms
7,552 KB
testcase_29 AC 11 ms
7,296 KB
testcase_30 AC 13 ms
7,808 KB
testcase_31 AC 11 ms
7,168 KB
testcase_32 AC 12 ms
8,192 KB
testcase_33 AC 0 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 0 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:71:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   71 |         write(1,wp,wbuf+sizeof wbuf-wp);
      |         ^~~~~
main.c:72:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   72 |         _exit(0);
      |         ^~~~~
main.c:72: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) ({ulong _z=v;do*--wp=_z%10+48;while(_z/=10);})
#define rep(v,e) for(typeof(e)v=0;v<e;++v)
#define rrep(v,e) for(typeof(e)v=e;v--;)

typedef unsigned long ulong;

char wbuf[1<<25];
int p[200000];
int q[200000];
int v[200000];
int n,s,z;

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

void sort(){
	static unsigned a[200000];
	static unsigned b[200000];
	sort_aux(p,a,q,b);
	sort_aux(a,p,b,q);
	sort_aux(p,a,q,b);
	sort_aux(a,p,b,q);
}

int main(){
	char*wp=wbuf+sizeof wbuf;
	rd_init();
	n=rd();
	s=rd();
	rep(i,n){
		p[i]=rd();
		q[i]=i;
	}
	sort();
	rep(j,n){
		v[q[j]]=j;
	}
	rrep(i,n){
		int j=v[i];
		if((j==0||p[j]-p[j-1]>s)&&(j==n-1||p[j+1]-p[j]>s)){
			wt(i+1);
			*--wp=' ';
			++z;
		}
	}
	*wp='\n';
	wt(z);
	write(1,wp,wbuf+sizeof wbuf-wp);
	_exit(0);
}
0