# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
942116 | dshfjka | 송금 (JOI19_remittance) | C++14 | 0 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define LL long long
using namespace std;
int main()
{
LL n;
scanf("%lld",&n);
LL arr[n+5],tmp=-1;
for(LL a=1;a<=n;a++)
{
LL x,y;
scanf("%lld %lld",&x,&y);
arr[a]=x-y;
if(arr[a]<0)tmp=a;
}
if(tmp!=-1)
{
LL now=arr[tmp];
arr[tmp]=0;
// printf("tmp=%lld\n",tmp);
for(LL a=tmp-1;a>=1;a--)
{
now*=2;
arr[a]+=now;
if(arr[a]<0)
{
now=arr[a];
arr[a]=0;
}
else{
now=0;
}
if(now<=-1e16)
{
printf("No\n");
exit(0);
}
// printf("arr[%lld] = %lld dan %lld\n",a,arr[a],now);
}
for(LL b=1;b<=45;b++)
{
for(LL a=n;a>=1;a--)
{
// printf("now=%lld\n",now);
now*=2;
arr[a]+=now;
if(arr[a]<0)
{
now=arr[a];
arr[a]=0;
}
else{
now=0;
}
if(now<=-1e16)
{
printf("No\n");
exit(0);
}
}
if(now==0)break;
}
}
// printf("SINI\n");
for(LL b=1;b<=n;b++)
{
if(arr[b]>0 || arr[b]<0){
printf("No\n");
exit(0);
}
}
printf("Yes\n");
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |