結果

問題 No.1675 Strange Minimum Query
ユーザー kotatsugamekotatsugame
提出日時 2021-09-10 21:30:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 86,324 KB
実行使用メモリ 20,168 KB
最終ジャッジ日時 2024-06-11 22:34:00
合計ジャッジ時間 10,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,600 KB
testcase_01 AC 5 ms
9,580 KB
testcase_02 AC 5 ms
9,600 KB
testcase_03 AC 191 ms
14,120 KB
testcase_04 AC 186 ms
14,300 KB
testcase_05 AC 19 ms
11,304 KB
testcase_06 AC 227 ms
14,556 KB
testcase_07 AC 239 ms
15,396 KB
testcase_08 AC 5 ms
9,600 KB
testcase_09 AC 6 ms
9,472 KB
testcase_10 AC 107 ms
14,208 KB
testcase_11 AC 27 ms
12,032 KB
testcase_12 AC 118 ms
14,464 KB
testcase_13 AC 220 ms
15,480 KB
testcase_14 AC 255 ms
20,168 KB
testcase_15 AC 232 ms
15,476 KB
testcase_16 AC 5 ms
9,592 KB
testcase_17 AC 47 ms
11,008 KB
testcase_18 AC 70 ms
11,392 KB
testcase_19 AC 85 ms
13,584 KB
testcase_20 AC 198 ms
15,536 KB
testcase_21 AC 179 ms
15,352 KB
testcase_22 AC 226 ms
16,344 KB
testcase_23 AC 196 ms
13,292 KB
testcase_24 AC 170 ms
13,896 KB
testcase_25 AC 127 ms
12,352 KB
testcase_26 AC 60 ms
11,904 KB
testcase_27 AC 154 ms
14,868 KB
testcase_28 AC 79 ms
13,440 KB
testcase_29 AC 51 ms
12,928 KB
testcase_30 AC 57 ms
11,776 KB
testcase_31 AC 245 ms
14,804 KB
testcase_32 AC 317 ms
17,492 KB
testcase_33 AC 305 ms
17,360 KB
testcase_34 AC 317 ms
17,484 KB
testcase_35 AC 320 ms
16,640 KB
testcase_36 AC 321 ms
16,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:11:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   11 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<atcoder/segtree>
using namespace std;
int op(int a,int b){return a<b?a:b;}
int e(){return 2e9;}
int N,Q;
vector<pair<int,int> >L[2<<17];
main()
{
	cin>>N>>Q;
	for(int i=0;i<Q;i++)
	{
		int l,r,b;cin>>l>>r>>b;
		L[l-1].push_back(make_pair(b,r));
	}
	priority_queue<pair<int,int> >P;
	vector<int>A(N);
	P.push(make_pair(1,N));
	for(int l=0;l<N;l++)
	{
		while(P.top().second<=l)P.pop();
		for(pair<int,int>p:L[l])P.push(p);
		A[l]=P.top().first;
	}
	atcoder::segtree<int,op,e>Q(A);
	for(int l=0;l<N;l++)
	{
		for(pair<int,int>p:L[l])
		{
			int r=p.second,b=p.first;
			if(Q.prod(l,r)!=b)
			{
				cout<<-1<<endl;
				return 0;
			}
		}
	}
	for(int i=0;i<N;i++)cout<<A[i]<<(i+1==N?"\n":" ");
}
0