# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
92658 | SamAnd | 거래 (IZhO13_trading) | C++17 | 443 ms | 22696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <algorithm>
#include <queue>
#include <vector>
using namespace std;
const int N=300003;
struct ban
{
int l,r,x;
};
bool operator<(const ban& a,const ban& b)
{
int ansa,ansb;
if(a.l<b.l)
{
ansb=b.x;
ansa=a.x+(b.l-a.l);
}
else
{
ansb=b.x+(a.l-b.l);
ansa=a.x;
}
return ansa<ansb;
}
int n, m;
int a[N];
vector<ban> b[N];
int main()
{
//freopen("trading.in","r",stdin);
//freopen("trading.out","w",stdout);
cin>>n>>m;
for(int i=0;i<m;++i)
{
ban t;
cin>>t.l>>t.r>>t.x;
b[t.l].push_back(t);
}
priority_queue<ban> q;
for(int i=1;i<=n;++i)
{
ban t;
for(int j=0;j<b[i].size();++j)
{
t=b[i][j];
q.push(t);
}
bool z=false;
do
{
if(q.empty())
{
z=true;
break;
}
t=q.top();
if(t.r<i)
q.pop();
else
break;
}while(1);
if(z)
{
cout<<0<<' ';
continue;
}
cout<<t.x+(i-t.l)<<' ';
}
cout<<endl;
return 0;
}
/*
5 2
1 3 2
2 4 6
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |