結果

問題 No.759 悪くない忘年会にしような!
ユーザー kmjpkmjp
提出日時 2018-12-07 00:10:20
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,472 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 172,908 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-14 02:38:15
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 64
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
int X[101010],Y[101010],Z[101010];
vector<int> ev[303030];

map<int,int> M;
int ng[303030];
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	M[-1]=1<<20;
	M[1<<20]=-1;
	cin>>N;
	FOR(i,N) {
		cin>>X[i]>>Y[i]>>Z[i];
		ev[Z[i]].push_back(i);
	}
	
	for(i=10000;i>=0;i--) if(ev[i].size()) {
		FORR(e,ev[i]) {
			auto it=M.lower_bound(X[e]);
			if(it->second>=Y[e]) ng[e]=1;
		}
		FORR(e,ev[i]) {
			x=X[e];
			y=Y[e];
			auto k=M.lower_bound(x);
			if(k->second>=y) continue;
			while(prev(M.lower_bound(x))->second<=y) {
				auto p=*prev(M.lower_bound(x));
				M.erase(p.first);
			}
			M[x]=y;
		}
		FORR(e,ev[i]) {
			auto it=M.lower_bound(X[e]);
			if(it->second>Y[e]) ng[e]=1;
			it=M.lower_bound(X[e]+1);
			if(it->second>=Y[e]) ng[e]=1;
		}
	}
	
	
	FOR(i,N) if(ng[i]==0) cout<<(i+1)<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0