結果

問題 No.1675 Strange Minimum Query
ユーザー tailstails
提出日時 2021-09-10 23:18:53
言語 cLay
(20240714-1)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 5,768 ms
コンパイル使用メモリ 212,780 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-07-05 15:27:46
合計ジャッジ時間 10,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 33 ms
8,832 KB
testcase_04 AC 28 ms
8,960 KB
testcase_05 AC 6 ms
5,504 KB
testcase_06 AC 37 ms
9,216 KB
testcase_07 AC 41 ms
9,728 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 21 ms
9,472 KB
testcase_11 AC 8 ms
6,656 KB
testcase_12 AC 23 ms
9,984 KB
testcase_13 AC 34 ms
13,184 KB
testcase_14 AC 27 ms
13,312 KB
testcase_15 AC 28 ms
13,312 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 9 ms
5,760 KB
testcase_18 AC 12 ms
6,784 KB
testcase_19 AC 18 ms
8,832 KB
testcase_20 AC 35 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 39 ms
11,904 KB
testcase_23 AC 31 ms
9,088 KB
testcase_24 AC 28 ms
9,728 KB
testcase_25 AC 22 ms
7,808 KB
testcase_26 AC 12 ms
6,784 KB
testcase_27 AC 28 ms
10,496 KB
testcase_28 AC 16 ms
8,192 KB
testcase_29 AC 13 ms
7,808 KB
testcase_30 AC 12 ms
6,784 KB
testcase_31 AC 41 ms
10,368 KB
testcase_32 AC 53 ms
13,312 KB
testcase_33 AC 51 ms
13,184 KB
testcase_34 AC 51 ms
13,312 KB
testcase_35 AC 53 ms
13,184 KB
testcase_36 AC 53 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

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