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>
using namespace std;
vector < long long > sum[1005];
long long all[1005];
int main()
{
long long N,M,i,j,k,tt=0,t,x;
scanf("%lld %lld",&N,&M);
x=M;
for(i=0;i<N;i++)
{
tt=0;
sum[i].push_back(tt);
for(j=0;j<M;j++)
{
scanf("%lld",&t);
all[i]+=t;
for(k=0;k<N*M;k++)
{
tt+=t;
sum[i].push_back(tt);
}
}
}
M*=(N*M);
//printf("%lld\n",M);
for(i=1;i<M;i++)
{
if(sum[0][i]>=all[0]*x&&(sum[1][M]-sum[1][i])>=all[1]*x)
{
//printf("%lld %lld %lld %lld\n",sum[0][i],M,sum[0][M],i);
printf("%lld %lld\n",i,M);
printf("1 2\n");
return 0;
}
if(sum[1][i]>=all[1]*x&&(sum[0][M]-sum[0][i])>=all[0]*x)
{
//printf("%lld %lld %lld %lld\n",sum[1][i],M,sum[1][M],i);
printf("%lld %lld\n",i,M);
printf("2 1\n");
return 0;
}
}
printf("-1\n");
return 0;
}
Compilation message (stderr)
naan.cpp: In function 'int main()':
naan.cpp:12:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
12 | scanf("%lld %lld",&N,&M);
| ~~~~~^~~~~~~~~~~~~~~~~~~
naan.cpp:20:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
20 | scanf("%lld",&t);
| ~~~~~^~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |