-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path808D_array_division.cpp
60 lines (56 loc) · 1.14 KB
/
808D_array_division.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include<iostream>
#include<map>
using namespace std;
int main()
{
int n;
cin>>n;
int arr[n+5];
long long sum=0;
for(int i = 0 ; i <n ; i++)
{
cin>>arr[i];
sum+=arr[i];
}
if(sum & 1)
{
cout<<"NO";
return 0;
}
map<long long,int>first,second;
first[arr[0]]= 1;
for(int i = 1 ; i<n ; i++) second[arr[i]]++;
long long sdash = 0;
for(int i=0 ; i<n ; i++)
{
sdash += arr[i]; // first i numbers
if(sdash == sum/2)
{
cout<<"YES";
return 0;
}
if(sdash< sum/2)
{
long long x = (sum/2) - sdash;
// delete element from second half and insert into first half
if(second[x]>0)
{
cout<<"YES";
return 0;
}
}
else
{
long long y = sdash - (sum/2);
if(first[y]>0)
{
cout<<"YES";
return 0;
}
}
first[arr[i+1]]++;
second[arr[i+1]]--;
}
cout<<"NO";
return 0;
}