結果

問題 No.1675 Strange Minimum Query
ユーザー inksamuraiinksamurai
提出日時 2021-09-10 21:45:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,432 bytes
コンパイル時間 4,434 ms
コンパイル使用メモリ 270,536 KB
実行使用メモリ 18,604 KB
最終ジャッジ日時 2024-06-11 23:15:35
合計ジャッジ時間 9,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 62 ms
7,008 KB
testcase_04 AC 62 ms
9,952 KB
testcase_05 AC 13 ms
8,548 KB
testcase_06 AC 71 ms
7,524 KB
testcase_07 AC 83 ms
10,212 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 65 ms
13,184 KB
testcase_11 AC 25 ms
10,724 KB
testcase_12 AC 72 ms
13,624 KB
testcase_13 WA -
testcase_14 AC 124 ms
15,752 KB
testcase_15 WA -
testcase_16 AC 2 ms
6,944 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 #

#include <bits/stdc++.h>
#include <atcoder/all>
//eolibraries
#define lnf 3999999999999999999
#define inf 999999999+1
#define fi first
#define se second
#define pb push_back
#define all(c) (c).begin(),(c).end()
#define sz(c) (int)(c).size()
#define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end());
#define rep(i,n) for(int i=0;i<n;i++)
#define drep(i,n) for(int i=n-1;i>=0;i--)
#define crep(i,x,n) for(int i=x;i<n;i++)
#define vec(...) vector<__VA_ARGS__>
#define _3E0svGb ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
//eodefine
using namespace std;
typedef long long ll;
typedef long double ld;
using pii=pair<int,int>;
using tpii=pair<pii,int>;
using vi=vec(int);
const int mxn=12000;

ll op(ll l,ll r){
	return min(l,r);
}

ll e(){
	return lnf;
}

int main(){
_3E0svGb;
	int n,m;
	cin>>n>>m;
	atcoder::segtree<ll,op,e> seg(n);
	rep(i,n) seg.set(i,lnf);
	vec(vec(pii)) qry(n);
	ll mx=0;
	rep(i,m){
		ll l,r,val;
		cin>>l>>r>>val;
		l--,r--;
		mx=max(mx,val);
		qry[r].pb({l,val});	
	}
	mx++;
	rep(i,n){
		sort(all(qry[i]));
		for(auto p : qry[i]){
			ll val=p.se;
			if(seg.prod(p.fi,i+1)<val){
				printf("-1\n");
				exit(0);
			}
			seg.set(p.fi,val);
		}
	}
	rep(i,n){
		for(auto p : qry[i]){
			ll val=p.se;
			if(seg.prod(p.fi,i+1)!=val){
				printf("-1\n");
				exit(0);
			}
		}
	}
	rep(i,n){
		cout<<(seg.prod(i,i+1)==lnf?mx:seg.prod(i,i+1));
		if(i<n-1) cout<<" ";
	}
	cout<<"\n";
//	
	return 0;
}
0