forked from kothariji/competitive-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path(Codeforces)Gambling.cpp
112 lines (101 loc) · 1.91 KB
/
(Codeforces)Gambling.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#include <bits/stdc++.h>
#define ll long long
#define fast ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
using namespace std;
int main()
{
fast;
ll t;
cin >> t;
deque<ll> a, b;
ll x;
for (ll i = 0; i < t; i++)
{
cin >> x;
a.push_back(x);
}
for (ll i = 0; i < t; i++)
{
cin >> x;
b.push_back(x);
}
sort(a.rbegin(), a.rend());
sort(b.rbegin(), b.rend());
auto it = a.begin();
auto it2 = b.begin();
ll A = 0, B = 0;
ll flag = 0;
while (a.size() != 0 && b.size() != 0)
{
if (flag == 0)
{
if (*it < *it2)
{
b.pop_front();
it2 = b.begin();
}
else
{
A += *(a.begin());
a.pop_front();
it = a.begin();
}
flag = 1;
}
else
{
if (*it > *it2)
{
a.pop_front();
it = a.begin();
}
else
{
B += *(b.begin());
b.pop_front();
it2 = b.begin();
}
flag = 0;
}
}
if (a.size() != 0)
{
while (a.size() != 0)
{
if (flag == 0)
{
A += *(a.begin());
a.pop_front();
it = a.begin();
flag = 1;
}
else
{
a.pop_front();
it = a.begin();
flag = 0;
}
}
}
else if (b.size() != 0)
{
while (b.size() != 0)
{
if (flag == 0)
{
b.pop_front();
it2 = b.begin();
flag = 1;
}
else
{
B += *(b.begin());
b.pop_front();
it2 = b.begin();
flag = 0;
}
}
}
cout << A - B << "\n";
return 0;
}