이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n,m;
int speed1[20001];
int speed2[20001];
int speed3[20001];
bool seg[301];
int timee[20001];
int due[20001];
bool is[20001];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for(int i=0;i<n;i++)
{
cin >> speed1[i] >> speed2[i]>>speed3[i];
timee[i]=0;
due[i]=0;
}
cin >> m;
int t;
for(int i=0;i<m;i++)
{
cin >> t;
seg[t]=1;
}
for(int i=1;i<=300;i++)
{
for(int j=0;j<n;j++)
{
if(is[j])
{
timee[j]++;
due[j]--;
if(due[j]<=0)is[j]=0;
}
else
{
if(i<=100)timee[j]+=speed1[j];
else if(i<=200)timee[j]+=speed2[j];
else
{
timee[j]+=speed3[j];
}
}
}
if(seg[i])
{
vector<pair<int,int> >temp;
for(int j=0;j<n;j++)
{
temp.push_back(make_pair(timee[j],j));
}
sort(temp.begin(),temp.end());
int previ=0;
for(int j=1;j<n;j++)
{
if(temp[j].first!=temp[previ].first)previ=j;
int pos=temp[j].second;
if(is[pos] || previ%20==0)continue;
is[pos]=1;
due[pos]=previ%20;
}
}
}
for(int i=0;i<n;i++)
{
cout << timee[i]<<'\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |