前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >CodeForces 157A Game Outcome

CodeForces 157A Game Outcome

作者头像
ShenduCC
发布2018-04-26 17:24:51
7570
发布2018-04-26 17:24:51
举报
文章被收录于专栏:算法修养算法修养

A. Game Outcome

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Sherlock Holmes and Dr. Watson played some game on a checkered board n × n in size. During the game they put numbers on the board's squares by some tricky rules we don't know. However, the game is now over and each square of the board contains exactly one number. To understand who has won, they need to count the number of winning squares. To determine if the particular square is winning you should do the following. Calculate the sum of all numbers on the squares that share this column (including the given square) and separately calculate the sum of all numbers on the squares that share this row (including the given square). A square is consideredwinning if the sum of the column numbers is strictly greater than the sum of the row numbers.

For instance, lets game was ended like is shown in the picture. Then the purple cell is winning, because the sum of its column numbers equals 8 + 3 + 6 + 7 = 24, sum of its row numbers equals 9 + 5 + 3 + 2 = 19, and 24 > 19.

Input

The first line contains an integer n (1 ≤ n ≤ 30). Each of the following n lines contain n space-separated integers. The j-th number on the i-th line represents the number on the square that belongs to the j-th column and the i-th row on the board. All number on the board are integers from 1 to 100.

Output

Print the single number — the number of the winning squares.

Examples

input

代码语言:javascript
复制
1
1

output

代码语言:javascript
复制
0

input

代码语言:javascript
复制
2
1 2
3 4

output

代码语言:javascript
复制
2

input

代码语言:javascript
复制
4
5 7 8 4
9 5 3 2
1 6 6 4
9 5 7 3

output

6

代码语言:javascript
复制
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include <algorithm>
#include <math.h>
#include <stdio.h>

using namespace std;
int r[35];
int l[35];
int a[35][35];
int n;
int main()
{
    scanf("%d",&n);
    memset(r,0,sizeof(r));
    memset(l,0,sizeof(l));
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            scanf("%d",&a[i][j]);

        }
    }
     for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            r[i]+=a[i][j];
            l[i]+=a[j][i];
        }
    }
    int num=0;
    for(int i=1;i<=n;i++)
     {
        for(int j=1;j<=n;j++)
        {
            if(l[j]>r[i])
                num++;
        }
     }
     printf("%d\n",num);
     return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-05-07 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档