# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
375265 | daniel920712 | Naan (JOI19_naan) | C++14 | 4 ms | 512 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <algorithm>
using namespace std;
long long all[2005][2005];
long long sum[2005][2005]={0};
long long tt[2005];
vector < pair < long long , long long > > ans;
long long F(long long a,long long b)
{
if(b==0) return a;
return F(b,a%b);
}
int main()
{
long long N,M,a,b,x1,y1,x2,y2,c,i,j,ok=1,now=0,z,x3,y3,t;
scanf("%lld %lld",&N,&M);
for(i=0;i<N;i++)
{
sum[i][0]=0;
for(j=0;j<M;j++)
{
scanf("%lld",&all[i][j]);
sum[i][j]=sum[i][j-1]+all[i][j];
}
}
for(i=0;i<N;i++) tt[i]=i;
do
{
ans.clear();
x1=0;
y1=1;
now=0;
a=0;
b=1;
for(i=0;i<M;i++)
{
x3=1;
y3=1;
while(1)
{
x2=x1*y3+x3*y1*all[tt[now]][i];
y2=y1*y3;
t=F(x2,y2);
x2/=t;
y2/=t;
if(x2*N>=sum[tt[now]][M-1]*y2)
{
x2=sum[tt[now]][M-1]*y1-x1*N;
y2=y1*N*all[tt[now]][i];
t=F(x2,y2);
x2/=t;
y2/=t;
x3=x3*y2-x2*y3;
y3*=y2;
t=F(x3,y3);
x3/=t;
y3/=t;
if(now<=N-1)
{
if(now<N-1) ans.push_back(make_pair(x2*b+a*y2,b*y2));
a=x2*b+a*y2;
b*=y2;
t=F(a,b);
a/=t;
b/=t;
now++;
y1=y3;
x1=x3*all[tt[now]][i];
t=F(x1,y1);
x1/=t;
y1/=t;
//printf("bb %lld %lld\n",x2,y2);
}
if(now==N) break;
}
else
{
a=x3*b+a*y3;
b*=y3;
t=F(a,b);
a/=t;
b/=t;
x1=x2;
y1=y2;
t=F(x1,y1);
x1/=t;
y1/=t;
break;
}
}
if(now==N) break;
}
if(now==N)
{
for(auto i:ans) printf("%lld %lld\n",i.first,i.second);
for(i=0;i<N;i++) printf("%lld ",tt[i]+1);
return 0;
}
}while(next_permutation(tt,tt+N));
printf("-1\n");
return 0;
}
Compilation message (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... |