結果

問題 No.1675 Strange Minimum Query
ユーザー tailstails
提出日時 2021-09-10 22:54:00
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 5,394 ms
コンパイル使用メモリ 212,808 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-07-05 15:27:35
合計ジャッジ時間 11,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 28 ms
8,704 KB
testcase_04 AC 26 ms
8,960 KB
testcase_05 AC 5 ms
5,504 KB
testcase_06 AC 32 ms
9,344 KB
testcase_07 AC 34 ms
9,856 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 20 ms
9,472 KB
testcase_11 AC 8 ms
6,656 KB
testcase_12 AC 23 ms
9,856 KB
testcase_13 AC 35 ms
13,312 KB
testcase_14 AC 26 ms
13,312 KB
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

using P=pair<ll,pair<ll,ll>>;
P a[2d5];
ll s[2d5];
ll z[2d5];
{
	ll@n,@q;
	rep(i,q){
		ll@l,@r,@b;
		a[i]={-b,{r,l-1}};
	}
	sortA(q,a);
	ll fb=0,fi=0;
	rep(i,q){
		ll b=-a[i].first;
		ll l=a[i].second.second;
		ll r=a[i].second.first;
		ll f=(fb==b&&fi>=l);
		while(1){
			ll t=l;
			while(t<r&&s[t]){
				t=s[t];
			}
			s[l]=t+1;
			if(t>=r){
				break;
			}
			l=t;
			f=1;
			z[l]=b;
			if(fb!=b||fi<l){
				fb=b;
				fi=l;
			}
		}
		if(!f){
			wt(-1);
			exit(0);
		}
	}
	rep(i,n){
		if(!z[i]){
			z[i]=1;
		}
	}
	wt(z(n));
}
0