Restoring Numbers - CodeForces 509 D

Restoring Numbers
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya had two arrays consisting of non-negative integers: a of size n and b of size m. Vasya chose a positive integer k and created ann × m matrix v using the following formula:

Vasya wrote down matrix v on a piece of paper and put it in the table.

A year later Vasya was cleaning his table when he found a piece of paper containing an n × m matrix w. He remembered making a matrix one day by the rules given above but he was not sure if he had found the paper with the matrix v from those days. Your task is to find out if the matrix w that you've found could have been obtained by following these rules and if it could, then for what numbersk, a1, a2, ..., an, b1, b2, ..., bm it is possible.

Input

The first line contains integers n and m (1 ≤ n, m ≤ 100), separated by a space — the number of rows and columns in the found matrix, respectively.

The i-th of the following lines contains numbers wi, 1, wi, 2, ..., wi, m (0 ≤ wi, j ≤ 109), separated by spaces — the elements of the i-th row of matrix w.

Output

If the matrix w could not have been obtained in the manner described above, print "NO" (without quotes) in the single line of output.

Otherwise, print four lines.

In the first line print "YES" (without quotes).

In the second line print an integer k (1 ≤ k ≤ 1018). Note that each element of table w should be in range between 0 and k - 1inclusively.

In the third line print n integers a1, a2, ..., an (0 ≤ ai ≤ 1018), separated by spaces.

In the fourth line print m integers b1, b2, ..., bm (0 ≤ bi ≤ 1018), separated by spaces.

Sample test(s)
input
2 3
1 2 3
2 3 4
output
YES
1000000007
0 1 
1 2 3 
input
2 2
1 2
2 0
output
YES
3
0 1 
1 2 
input
2 2
1 2
2 1
output
NO
题意:构造ab序列还有k,使得w[i][j]=(a[i]+b[j])%k。

思路:假设a1=0,然后就可以求出a、b的序列,然后w[i][j]-a[i]-b[j]=0 或 +k 或 -k,并且w[i][j]均小于k时,存在这样的序列。

AC代码如下:

#include<cstdio>
#include<cstring>
#include<cstdlib>
using namespace std;
typedef long long ll;
ll w[110][110],a[110],b[110],MOD;
bool flag;
int n,m;
void solve()
{
    int i,j,k;
    ll ret;
    flag=true;
    scanf("%d%d",&n,&m);
    for(i=1;i<=n;i++)
       for(j=1;j<=m;j++)
          scanf("%I64d",&w[i][j]);
    a[1]=0;
    for(i=1;i<=m;i++)
       b[i]=w[1][i]-a[1];
    for(i=2;i<=n;i++)
       a[i]=w[i][1]-b[1];
    for(i=1;i<=n;i++)
       for(j=1;j<=m;j++)
       {
           ret=abs(w[i][j]-a[i]-b[j]);
           if(ret!=0)
           {
               if(MOD==0)
                 MOD=ret;
               else if(ret!=MOD)
                 flag=false;
           }
       }
    if(!flag)
    {
        printf("NO\n");
        return;
    }
    if(MOD==0)
      MOD=1e18;
    for(i=1;i<=n;i++)
       for(j=1;j<=m;j++)
          if(w[i][j]>=MOD)
            flag=false;
    if(!flag)
    {
        printf("NO\n");
        return;
    }
    printf("YES\n%I64d\n",MOD);
    for(i=1;i<=n;i++)
       printf("%I64d ",(a[i]+MOD)%MOD);
    printf("\n");
    for(i=1;i<=m;i++)
       printf("%I64d ",(b[i]+MOD)%MOD);
    printf("\n");
}
int main()
{
    solve();
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值