結果

問題 No.1675 Strange Minimum Query
ユーザー kwm_tkwm_t
提出日時 2021-09-10 21:52:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,780 bytes
コンパイル時間 4,651 ms
コンパイル使用メモリ 236,396 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-11 23:35:35
合計ジャッジ時間 12,030 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 127 ms
5,760 KB
testcase_04 AC 112 ms
6,912 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 144 ms
6,016 KB
testcase_07 AC 156 ms
7,520 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 80 ms
7,680 KB
testcase_11 AC 27 ms
6,940 KB
testcase_12 AC 90 ms
8,064 KB
testcase_13 AC 139 ms
9,600 KB
testcase_14 AC 186 ms
9,344 KB
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 35 ms
5,376 KB
testcase_18 AC 50 ms
5,376 KB
testcase_19 AC 67 ms
7,424 KB
testcase_20 AC 153 ms
8,448 KB
testcase_21 AC 136 ms
8,192 KB
testcase_22 AC 178 ms
8,704 KB
testcase_23 AC 141 ms
5,888 KB
testcase_24 AC 126 ms
6,656 KB
testcase_25 AC 99 ms
5,376 KB
testcase_26 AC 48 ms
5,504 KB
testcase_27 AC 125 ms
8,192 KB
testcase_28 AC 67 ms
7,296 KB
testcase_29 AC 46 ms
7,168 KB
testcase_30 AC 46 ms
5,504 KB
testcase_31 AC 187 ms
7,296 KB
testcase_32 AC 241 ms
9,472 KB
testcase_33 AC 242 ms
9,472 KB
testcase_34 AC 242 ms
9,600 KB
testcase_35 AC 231 ms
9,472 KB
testcase_36 AC 226 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include "atcoder/all"
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using S = int;
using F = int;

S op(S a, S b) { return std::min(a, b); }
S e() { return INF; }
S mapping(F f, S x) { return (f == INF ? x : f); }
F composition(F f, F g) { return (f == INF ? g : f); }
F id() { return INF; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, q; cin >> n >> q;
	vector<pair<int, P>>v(q);
	rep(i, q) {
		int l, r, b; cin >> l >> r >> b;
		l--; r--;
		v[i] = { b,{l,r} };
	}
	sort(all(v));
	vector<int>vs(n, INF);
	lazy_segtree<S, op, e, F, mapping, composition, id> seg(vs);
	rep(i, q) {
		int x = v[i].first;
		int l = v[i].second.first;
		int r = v[i].second.second;
		seg.apply(l, r + 1, x);
	}
	rep(i, q) {
		int x = v[i].first;
		int l = v[i].second.first;
		int r = v[i].second.second;
		int y = seg.prod(l, r + 1);
		if (x != y) {
			cout << -1 << endl;
			return 0;
		}
	}
	rep(i, n) {
		if (0 != i)cout << " ";
		cout << seg.get(i);
	}
	cout << endl;
	return 0;
}
0