結果

問題 No.2808 Concentration
ユーザー tailstails
提出日時 2024-07-19 13:50:53
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 24,668 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-07-19 13:51:01
合計ジャッジ時間 8,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
12,544 KB
testcase_01 AC 14 ms
10,880 KB
testcase_02 AC 15 ms
13,056 KB
testcase_03 AC 10 ms
10,752 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 6 ms
5,632 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 9 ms
8,320 KB
testcase_11 AC 8 ms
7,296 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 13 ms
11,008 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 12 ms
11,392 KB
testcase_16 AC 12 ms
10,496 KB
testcase_17 AC 13 ms
12,160 KB
testcase_18 AC 13 ms
12,160 KB
testcase_19 AC 7 ms
6,400 KB
testcase_20 AC 12 ms
12,544 KB
testcase_21 AC 11 ms
10,496 KB
testcase_22 AC 8 ms
7,040 KB
testcase_23 AC 8 ms
7,808 KB
testcase_24 AC 12 ms
11,392 KB
testcase_25 AC 7 ms
6,016 KB
testcase_26 AC 12 ms
11,136 KB
testcase_27 AC 14 ms
12,672 KB
testcase_28 AC 14 ms
10,880 KB
testcase_29 AC 14 ms
11,776 KB
testcase_30 AC 14 ms
11,264 KB
testcase_31 AC 13 ms
12,800 KB
testcase_32 AC 12 ms
12,800 KB
testcase_33 AC 14 ms
11,136 KB
testcase_34 AC 13 ms
12,288 KB
testcase_35 AC 12 ms
13,056 KB
testcase_36 AC 13 ms
12,160 KB
testcase_37 AC 14 ms
12,672 KB
testcase_38 AC 13 ms
12,160 KB
testcase_39 AC 13 ms
13,056 KB
testcase_40 AC 13 ms
12,800 KB
testcase_41 AC 12 ms
12,032 KB
testcase_42 AC 13 ms
12,544 KB
testcase_43 AC 14 ms
11,264 KB
testcase_44 AC 14 ms
13,184 KB
testcase_45 AC 13 ms
12,800 KB
testcase_46 AC 13 ms
12,928 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 1 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 1 ms
5,376 KB
testcase_56 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:59: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   10 | #define wt1(v) ({char wbuf[64],*wp=wbuf+sizeof wbuf;wt(v);write(1,wp,wbuf+sizeof wbuf-wp);})
      |                                                           ^~~~~
main.c:48:9: note: in expansion of macro ‘wt1’
   48 |         wt1(zs-mx);
      |         ^~~

ソースコード

diff #

// ref:
// https://yukicoder.me/submissions/994182 by kotatsugame

#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 wt1(v) ({char wbuf[64],*wp=wbuf+sizeof wbuf;wt(v);write(1,wp,wbuf+sizeof wbuf-wp);})
#define chmin(v,a) (v=v<=a?v:a)
#define chmax(v,a) (v=v>=a?v:a)

typedef unsigned long ulong;

int N,S,H,L,Z,R[2<<17],ql[2<<17];
long dp[2<<17],ZS[2<<17],qz[2<<17];

int main()
{
	rd_init();
	N=rd();
	S=rd();
	H=rd();
	L=R[0]=-H;
	long zs=0;
	int qr=0,qw=0;
	int l=0;
	long mx=0;
	for(int i=1;i<=N;i++)
	{
		L=rd();
		R[i]=rd();
		Z=rd();
		zs+=Z;
		ZS[i+1]=ZS[i]+Z;
		dp[i]=dp[i-1]+Z;
		while(R[l+1]+H<=L)l++;
		long tz=dp[l]+ZS[i]-ZS[l+1];
		while(qr<qw&&qz[qw-1]>=tz)--qw;
		qz[qw]=tz;
		ql[qw]=L;
		++qw;
		while(qr<qw&&ql[qr]+S<R[i])++qr;
		if(qr<qw)chmin(dp[i],qz[qr]);
		chmax(mx,dp[i]);
	}
	wt1(zs-mx);
}
0