이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<cstdio>
#include<algorithm>
using namespace std;
pair<long long,long long> arix[1010];
int order[1010];
int tp=0;
int L,Q;
void update(int t)
{
t%=2*L;
for(int i=0;i<tp;i++)
{
arix[i].first+=arix[i].second*t;
while(arix[i].first<0 || arix[i].first>L)
{
if(arix[i].first<0)
{
arix[i].first*=-1;
arix[i].second*=-1;
}
else
{
arix[i].first=2*L-arix[i].first;
arix[i].second*=-1;
}
}
}
sort(arix,arix+tp);
return;
}
int main()
{
scanf("%d%d",&L,&Q);
int pt=0;
for(int i=0;i<Q;i++)
{
int t;
scanf("%d",&t);
update(t-pt);
pt=t;
int tt;
scanf("%d",&tt);
if(tt==1)
{
int x,d;
scanf("%d%d",&x,&d);
arix[tp]=make_pair(x,d);
for(int i=0;i<tp;i++)
if(arix[i].first<x)
order[tp]++;
for(int i=0;i<tp;i++)
if(order[i]>=order[tp]) order[i]++;
tp++;
}
else
{
int c;
scanf("%d",&c);
printf("%lld\n",arix[order[c-1]].first);
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |