# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
946613 | Zena_Hossam | 거래 (IZhO13_trading) | C++14 | 185 ms | 33156 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
//#define ll double
#define ll long long
//#define ll1 int
#define F first
#define S second
#define sz size()
#define all(s) s.begin(),s.end()
#define all1(s) s.rbegin(),s.rend()
int main()
{
//freopen("stdin.in","r",stdin);freopen("stdout.out","w",stdout);
ll T=1;
fi
//cin>>T;ll oo=0;
while(T--)
{
ll n,m;
cin>>n>>m;
ll a[m+5]= {},b[m+5]= {},c[m+5]={};
vector<pair<ll,ll>>s[n+5],v[n+5];
for(ll i=0; i<m; i++)
{
ll x,b1,c1;
cin>>x>>b1>>c1;a[i]=x,b[i]=b1,c[i]=c1;
s[x].push_back({c1,i});
}priority_queue<pair<ll,ll>>q;q.push({-1e18,0});
for(ll i=1; i<=n; i++)
{
for(ll j=0;j<s[i].sz;j++){
q.push({s[i][j].first-i-1,s[i][j].second});
}
while(q.size()>1){//cout<<q.size()<<" "<<b[q.top().second]<<"\n";
if(b[q.top().second]>=i)
break;
q.pop();
}
if(q.top().first==-1e18)cout<<0<<" ";
else
cout<<q.top().first+i+1<<" ";
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |