結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー tailstails
提出日時 2021-06-08 15:38:32
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-05-05 01:56:14
合計ジャッジ時間 953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 35 ms
6,400 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:23:1: warning: return type defaults to 'int' [-Wimplicit-int]
   23 | main(){
      | ^~~~
main.c: In function 'main':
main.c:31:9: warning: implicit declaration of function 'qsort' [-Wimplicit-function-declaration]
   31 |         qsort(a,n,8,cmpf);
      |         ^~~~~
main.c:70:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   70 |         write(1,wp,wbuf+sizeof wbuf-wp);
      |         ^~~~~
main.c:71:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   71 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

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

char*mmap();
#define rd(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}

char wbuf[1<<25];
#define wt(v) {long _z=v;do*--wp=_z%10+48;while(_z/=10);}

#define rep(v,e) for(int v=0;v<e;++v)

typedef struct {
	int index;
	unsigned val;
} S;

int cmpf(S*a,S*b){
	return a->val - b->val;
}

S a[400000];

main(){
	char*rp=mmap(0l,1l<<25,1,2,0,0ll);
	rd(n);
	rep(i,n){
		a[i].index=i;
		rd(ai);
		a[i].val=ai;
	}
	qsort(a,n,8,cmpf);

	char*wp=wbuf+sizeof wbuf;
	*--wp='\n';
	*--wp='1';

	int on=0;
	int i=0;
	for(i=0;i<n;i+=2){
		if(a[i].index==0){
			goto found1;
		}
	}
	for(i=n-2|1;i>0;i-=2){
		if(a[i].index==0){
			goto found2;
		}
	}

	again:;
	for(i=0;i<n;i+=2){
		*--wp=' ';
		wt(a[i].index+1);
		if(a[i].index==0){
			goto end;
		}
		found1:;
	}
	for(i=n-2|1;i>0;i-=2){
		*--wp=' ';
		wt(a[i].index+1);
		if(a[i].index==0){
			goto end;
		}
		found2:;
	}
	goto again;

	end:;
	write(1,wp,wbuf+sizeof wbuf-wp);
	_exit(0);
}
0