結果

問題 No.1675 Strange Minimum Query
ユーザー 沙耶花沙耶花
提出日時 2021-09-10 21:40:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,232 bytes
コンパイル時間 4,891 ms
コンパイル使用メモリ 272,308 KB
実行使用メモリ 15,100 KB
最終ジャッジ日時 2024-06-11 22:58:14
合計ジャッジ時間 13,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 111 ms
7,168 KB
testcase_04 AC 114 ms
9,728 KB
testcase_05 AC 43 ms
7,936 KB
testcase_06 AC 129 ms
7,680 KB
testcase_07 AC 150 ms
10,368 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 84 ms
12,292 KB
testcase_11 AC 51 ms
11,120 KB
testcase_12 AC 96 ms
12,716 KB
testcase_13 AC 148 ms
15,036 KB
testcase_14 AC 187 ms
15,008 KB
testcase_15 AC 169 ms
15,040 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 38 ms
6,948 KB
testcase_18 AC 50 ms
6,940 KB
testcase_19 AC 97 ms
12,324 KB
testcase_20 AC 148 ms
13,232 KB
testcase_21 AC 148 ms
13,256 KB
testcase_22 AC 182 ms
14,020 KB
testcase_23 AC 119 ms
7,808 KB
testcase_24 AC 121 ms
9,600 KB
testcase_25 AC 82 ms
7,040 KB
testcase_26 AC 55 ms
7,936 KB
testcase_27 AC 138 ms
13,260 KB
testcase_28 AC 87 ms
11,760 KB
testcase_29 AC 80 ms
11,896 KB
testcase_30 AC 55 ms
7,936 KB
testcase_31 AC 153 ms
10,240 KB
testcase_32 AC 228 ms
14,976 KB
testcase_33 AC 227 ms
15,100 KB
testcase_34 AC 230 ms
14,940 KB
testcase_35 AC 204 ms
14,948 KB
testcase_36 AC 203 ms
14,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

using P = pair<int,int>;

P op(P a,P b){
	return max(a,b);
}

P e(){
	return make_pair(-Inf,-1);
}

int op2(int a,int b){
	return min(a,b);
}
int e2(){
	return Inf;
}

int main(){
	
	int n,q;
	cin>>n>>q;
	vector<P> temp(n);
	rep(i,n){
		temp[i] = make_pair(Inf,i);
	}
	segtree<P,op,e> seg(temp);
	
	vector<int> l(q),r(q),b(q);
	rep(i,q){
		scanf("%d %d %d",&l[i],&r[i],&b[i]);
		l[i]--;
	}
	vector<int> t(q);
	rep(i,q)t[i] = i;
	
	sort(t.rbegin(),t.rend(),[&](int x,int y){
		return b[x]<b[y];
	});
	
	rep(i,q){
		int ind = t[i];
		while(true){
			P ret = seg.prod(l[ind],r[ind]);
			if(ret.first!=Inf)break;
			seg.set(ret.second,make_pair(b[ind],ret.second));
		}
	}
	
	while(true){
		P ret = seg.prod(0,n);
		if(ret.first!=Inf)break;
		seg.set(ret.second,make_pair(1000000000,0));
		
	}
	segtree<int,op2,e2> seg2(n);
	rep(i,n){
		seg2.set(i,seg.get(i).first);
	}
	rep(i,q){
		if(seg2.prod(l[i],r[i])!=b[i]){
			cout<<-1<<endl;
			return 0;
		}
		
	}
	
	rep(i,n){
		if(i!=0)cout<<' ';
		cout<<seg.get(i).first;
	}
	cout<<endl;
	
		
	
	return 0;
}
0