結果

問題 No.1675 Strange Minimum Query
ユーザー tailstails
提出日時 2021-09-10 22:59:28
言語 cLay
(20240714-1)
結果
TLE  
実行時間 -
コード長 548 bytes
コンパイル時間 4,781 ms
コンパイル使用メモリ 212,848 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-07-05 15:28:08
合計ジャッジ時間 10,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 23 ms
8,704 KB
testcase_04 AC 20 ms
9,088 KB
testcase_05 AC 4 ms
5,504 KB
testcase_06 AC 27 ms
9,216 KB
testcase_07 AC 28 ms
9,728 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 17 ms
9,344 KB
testcase_11 AC 6 ms
6,528 KB
testcase_12 AC 19 ms
9,984 KB
testcase_13 AC 27 ms
13,312 KB
testcase_14 AC 23 ms
13,184 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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];
			}
			if(t>=r){
				s[l]=t;
				break;
			}
			f=1;
			l=t;
			s[l]=l+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