codeforces Round 21 808D Array Division

codeforces Round 21 808D Array Division

D. Array Division
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya has an array a consisting of positive integer numbers. Vasya wants to divide this array into two non-empty consecutive parts (the prefix and the suffix) so that the sum of all elements in the first part equals to the sum of elements in the second part. It is not always possible, so Vasya will move some element before dividing the array (Vasya will erase some element and insert it into an arbitrary position).

Inserting an element in the same position he was erased from is also considered moving.

Can Vasya divide the array after choosing the right element to move and its new position?

Input

The first line contains single integer n (1 ≤ n ≤ 100000) — the size of the array.

The second line contains n integers a1, a2... an (1 ≤ ai ≤ 109) — the elements of the array.

Output

Print YES if Vasya can divide the array after moving one element. Otherwise print NO.

Examples
input
3
1 3 2
output
YES
题意: 在数组中移动一个数 使得分组可以分割成两个数组 使得两个数组之和相等
题解 首先分两种情况
1. 往后面移动一个数到前面  (维护前缀和 看看后面有没有符合条件的数)
2. 移掉一个数            (移掉第i个数 看看连续的数能不能符合条件)

#include <stdio.h>
#include <bits/stdc++.h>
#define mod 1000000007
typedef long long ll;
using namespace std;
ll s[100005];
ll n,avg;
map<ll,ll>mp;
int main(){ 
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>s[i];
		avg+=s[i];
		mp[s[i]]=i;   //记录最后一次出现的位置 
	}
	mp[0]=n+1;
	if(avg%2==1){
		cout<<"NO";return 0;
	}
	avg/=2;
	ll sum=0;	
	for(int i=1;i<=n;i++){   //把数往前面移动 
		sum+=s[i];
		if(sum>avg) break;
		if(mp[avg-sum]>i){    //如果后面的数存在 且下标大于i 
    		cout<<"YES"<<endl;
			return 0;
		}
	}
	int r=1;sum=0; 
    for(int i=1;i<=n;i++){   //把第i个数往后面掉
    	sum-=s[i];
    	while(sum<avg) sum+=s[r++];
    	while(sum>avg) sum-=s[--r];
    	if(r<=i) break;
    	if(sum==avg){
    		cout<<"YES"<<endl;
			return 0;
    	}
    	sum+=s[i]; 
    }
    cout<<"NO";
	return 0;
} 


评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值