# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
827182 | LeSonnn | 마상시합 토너먼트 (IOI12_tournament) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define task "tournament"
using namespace std;
typedef long long ll;
typedef pair <int, int> ii;
#define fi first
#define se second
const int N = 1e6 + 9;
ll n, m, k;
set<ll> s;
void progress()
{
cin >> n >> m;
for (int i = 1; i <= n; i++)
{
s.insert(i);
}
vector <ll> ans(n + 1), res;
for ( ; m--;)
{
ll l, r, w;
cin >> l >> r >> w;
auto it = s.lower_bound(l);
res.clear();
while (it != s.end() && *it <= r)
{
if (*it != w)
{
ans[*it] = w;
res.emplace_back(*it);
}
it++;
}
for (auto i : res)
{
s.erase(i);
}
}
for (int i = 1; i <= n; i++)
{
cout << ans[i] << " ";
}
}
signed main()
{
// Author : Shyn_
ios_base::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
ll nt(1);
// cin >> nt;
for ( ; nt--;)
{
progress();
}
return 0;
}
/* LCG */