-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathD.cpp
More file actions
173 lines (150 loc) · 3.83 KB
/
Copy pathD.cpp
File metadata and controls
173 lines (150 loc) · 3.83 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp> // Common file
#include <ext/pb_ds/tree_policy.hpp> // Including
using namespace __gnu_pbds;
using namespace std;
typedef long long int ll;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vi> vvi;
typedef vector<vl> vvl;
typedef vector<pi> vpi;
typedef vector<pl> vpl;
typedef vector<vpi> vvpi;
typedef vector<vpl> vvpl;
typedef set<int> si;
typedef multiset<int> msi;
typedef set<ll> sl;
typedef multiset<ll> msl;
typedef tree<
int,
null_type,
less<int>,
rb_tree_tag,
tree_order_statistics_node_update>
ordered_set;
#define clrcin cin.ignore(numeric_limits<streamsize>::max(),'\n');
#define GOGOGO ios::sync_with_stdio(false); cin.tie(nullptr);
#define BYEBYE return 0;
#define all(cn) (cn).begin(), (cn).end()
#define rep(i, n) for (int i = 0; i < n; ++i)
#define repk(i, k, n) for(int i = k; i < n; ++i)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define popcnt __builtin_popcount
#define gcd std::__detail::__gcd
#define lcm std::__detail::__lcm
const int INFI = 1e9 + 5;
const ll INFL = 4e18 + 5;
// LIORZ LIORZ LIORZ LIORZ LIORZ
#define int int64_t
vi primeFactors(int n)
{
// Print the number of 2s that divide n
vi out;
while (n % 2 == 0)
{
out.pb(2);
n = n/2;
}
// n must be odd at this point. So we can skip
// one element (Note i = i +2)
for (int i = 3; i <= sqrt(n); i = i + 2)
{
// While i divides n, print i and divide n
while (n % i == 0)
{
out.pb(i);
n = n/i;
}
}
// This condition is to handle the case when n
// is a prime number greater than 2
if (n > 2)
out.pb(n);
return out;
}
void solve()
{
int n, k, l1, r1, l2, r2;
cin >> n >> k >> l1 >> r1 >> l2 >> r2;
if(max(l1, l2) <= min(r1, r2))
{
int I = (min(r1, r2) - max(l1, l2)) * n;
if(I >= k)
{
cout << 0 << endl;
return;
}
int mI = (max(r1, r2) - min(l1, l2)) * n;
if(mI >= k)
{
cout << k - I << endl;
}
else
{
cout << mI - I + (k - mI) * 2 << endl;
}
}
else
{
int cost = max(l1, l2) - min(r1, r2);
int gain = max(r1, r2) - min(l1, l2);
// cout << cost << " " << gain << endl;
if (gain >= k)
{
cout << cost + k << endl;
}
else
{
int tcost = cost + gain;
if (cost < gain)
{
if (k >= n * gain)
{
cout << (cost + gain) * n + 2 * (k - n * gain) << endl;
}
else
{
int full = k / gain;
int leftover = k - full * gain;
int add = 0;
if(cost < leftover)
{
add = cost + leftover;
}
else
{
add = 2 * leftover;
}
cout << full * (cost + gain) + add << endl;
}
}
else
{
cout << tcost + 2 * (k - gain) << endl;
}
}
}
}
signed main()
{
GOGOGO
int t;
//t=1
cin >> t;
while(t--)
{
solve();
}
BYEBYE
}
/* PLEASE READ THIS
* N = 1
* GUESS A!!!!!!!
* DO SOMETHING INSTEAD OF NOTHING
*/