# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4777 | gs13068 | 거래 (IZhO13_trading) | C++98 | 396 ms | 22756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<cstdio>
#include<vector>
#include<set>
struct hat
{
bool type;
int x;
} h;
std::vector<hat> d[300001];
std::multiset<int> s;
std::multiset<int>::iterator it;
int main()
{
int a,b,c;
int i,j,n,m;
scanf("%d%d",&n,&m);
for(i=0;i<m;i++)
{
scanf("%d%d%d",&a,&b,&c);
h.x=c-a;
h.type=false;
d[a].push_back(h);
h.type=true;
d[b+1].push_back(h);
}
for(i=1;i<=n;i++)
{
for(j=0;j<d[i].size();j++)
{
if(d[i][j].type)
s.erase(s.find(d[i][j].x));
else
s.insert(d[i][j].x);
}
if(s.empty())printf("0 ");
else
{
it=s.end();
it--;
printf("%d ",*it+i);
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |