結果

問題 No.2000 Distanced Characters
ユーザー tailstails
提出日時 2022-07-08 22:20:33
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 37,084 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 17:37:05
合計ジャッジ時間 913 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 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 14 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:32:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   32 |         write(1,wbuf,wp-wbuf);
      |         ^~~~~
main.c:33:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   33 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

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

#define rd() ({long _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define rep(v,e) for(long v=0;v<e;++v)
#define chmin(v,a) (v=v<=a?v:a)

char wbuf[1<<25];
long f[26][26];
long a[26];

int main(){
	rep(y,26)rep(x,26)f[y][x]=1<<20;
	rep(x,26)a[x]=-1<<20;
	char*mmap();
	char*rp=mmap(0l,1l<<25,1,2,0,0ll);
	for(long i=0,c;c=*rp++-'a',c>=0;){
		rep(e,26){
			chmin(f[e][c],i-a[e]);
		}
		a[c]=i++;
	}
	char*wp=wbuf;
	rep(y,26){
		rep(x,26){
			long d=rd();
			*wp++=f[y][x]<d?'N':'Y';
			*wp++=' ';
		}
		wp[-1]='\n';
	}
	write(1,wbuf,wp-wbuf);
	_exit(0);
}
0