`
Simone_chou
  • 浏览: 185332 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

Vanya and Cards(贪心)

    博客分类:
  • CF
 
阅读更多
A. Vanya and Cards
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vanya loves playing. He even has a special set of cards to play with. Each card has a single integer. The number on the card can be positive, negative and can even be equal to zero. The only limit is, the number on each card doesn't exceed x in the absolute value.

Natasha doesn't like when Vanya spends a long time playing, so she hid all of his cards. Vanya became sad and started looking for the cards but he only found n of them. Vanya loves the balance, so he wants the sum of all numbers on found cards equal to zero. On the other hand, he got very tired of looking for cards. Help the boy and say what is the minimum number of cards does he need to find to make the sum equal to zero?

You can assume that initially Vanya had infinitely many cards with each integer number from  - x to x.

 

Input

The first line contains two integers: n (1 ≤ n ≤ 1000) — the number of found cards and x (1 ≤ x ≤ 1000) — the maximum absolute value of the number on a card. The second line contains n space-separated integers — the numbers on found cards. It is guaranteed that the numbers do not exceed x in their absolute value.

Output

Print a single number — the answer to the problem.

Sample test(s)
input
3 2
-1 1 2
output
1
input
2 3
-2 -2
output
2
Note

In the first sample, Vanya needs to find a single card with number -2.

In the second sample, Vanya needs to find two cards with number 2. He can't find a single card with the required number as the numbers on the lost cards do not exceed 3 in their absolute value.

 

    题意:

    一共有 N(1 ~ 1000) 张牌,每张牌上面的点数绝对值不超过X (1 ~ 1000),后给出这 N 张牌是什么,求最多要增加多少张牌,使所有点数之和等于 0 。

 

    思路:

    贪心。

 

    AC:

#include <stdio.h>

int main() {
    int n,x,sum = 0;
    scanf("%d%d",&n,&x);
    while(n--) {
        int num;
        scanf("%d",&num);
        sum += num;
    }
    if(!sum)    printf("0\n");
    else {
        if(sum < 0) sum = -sum;
        if(sum < x) printf("1\n");
        else {
            if(!(sum % x))  printf("%d\n",sum / x);
            else    printf("%d\n",sum / x + 1);
        }
    }
    return 0;
}

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics