zoukankan      html  css  js  c++  java
  • AtCoder Beginner Contest 067 C

    C - Splitting Pile


    Time limit : 2sec / Memory limit : 256MB

    Score : 300 points

    Problem Statement

    Snuke and Raccoon have a heap of N cards. The i-th card from the top has the integer ai written on it.

    They will share these cards. First, Snuke will take some number of cards from the top of the heap, then Raccoon will take all the remaining cards. Here, both Snuke and Raccoon have to take at least one card.

    Let the sum of the integers on Snuke's cards and Raccoon's cards be x and y, respectively. They would like to minimize |xy|. Find the minimum possible value of |xy|.

    Constraints

    • 2N2×105
    • −109ai109
    • ai is an integer.

    Input

    Input is given from Standard Input in the following format:

    N
    a1 a2  aN
    

    Output

    Print the answer.


    Sample Input 1

    6
    1 2 3 4 5 6
    

    Sample Output 1

    1
    

    If Snuke takes four cards from the top, and Raccoon takes the remaining two cards, x=10, y=11, and thus |xy|=1. This is the minimum possible value.


    Sample Input 2

    2
    10 -10
    

    Sample Output 2

    20
    

    Snuke can only take one card from the top, and Raccoon can only take the remaining one card. In this case, x=10, y=−10, and thus |xy|=20.

    前缀和查询

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <queue>
    #include <cmath>
    #include <vector>
    #include <algorithm>
    using namespace std;
    #define lowbit(x) (x&(-x))
    #define max(x,y) (x>y?x:y)
    #define min(x,y) (x<y?x:y)
    #define MAX 100000000000000000
    #define MOD 1000000007
    #define PI 3.141592653589793238462
    #define INF 1000000000
    #define mem(a) (memset(a,0,sizeof(a)))
    typedef long long ll;
    ll x,sum[200009],n,ans,minn;
    int main()
    {
        scanf("%lld",&n);
        sum[0]=0;
        for(ll i=1;i<=n;i++)
        {
            scanf("%lld",&x);
            sum[i]=sum[i-1]+x;
        }
        ans=sum[n];
        minn=abs(2*sum[1]-sum[n]);
        for(ll i=2;i<=n-1;i++)
        {
            minn=min(minn,abs(2*sum[i]-sum[n]));
        }
        printf("%lld
    ",minn);
        return 0;
    }
  • 相关阅读:
    TensorFlow 学习(4)——MNIST机器学习进阶
    TensorFlow 学习(3)——MNIST机器学习入门
    TensorFlow 学习(2)——正式起步
    TensorFlow 学习(1)——第一个程序:线性回归
    OpenCV学习笔记(15)——更多的轮廓函数
    OpenCV学习笔记(14)——轮廓的性质
    OpenCV学习笔记(13)——轮廓特征
    OpenCV学习笔记(12)——OpenCV中的轮廓
    机器学习
    机器学习- Attention Model结构解释及其应用
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7189591.html
Copyright © 2011-2022 走看看