-
Notifications
You must be signed in to change notification settings - Fork 0
/
C. Set or Decrease.cpp
245 lines (198 loc) ยท 4.73 KB
/
C. Set or Decrease.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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define mod 1000000007
#define Time cerr << "time taken : " << (float)clock() / CLOCKS_PER_SEC << " secs" << endl;
#define pb push_back
#define mp make_pair
#define line cout << endl;
#define ff first
#define ss second
#define vi vector<int>
#define no cout << "NO" << endl;
#define yes cout << "YES" << endl;
#define fr(i, a, b) for (int i = a; i < b; i++)
#define printv(v) \
for (int i = 0; i < (v.size()); i++) \
{ \
cout << v[i] << " "; \
} \
line;
#define onesbits(x) __builtin_popcountll(x)
#define zerobits(x) __builtin_ctzll(x)
#define sp(x, y) fixed << setprecision(y) << x
#define w(x) \
int x; \
cin >> x; \
while (x--)
#define tk(x) \
int x; \
cin >> x;
#define fast ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
#ifndef ONLINE_JUDGE
#define debug(x) \
cerr << #x << " "; \
_print(x); \
cerr << endl;
#else
#define debug(x)
#endif
template <class T>
void _print(T t)
{
cerr << t;
}
template <class T, class V>
void _print(pair<T, V> p)
{
cerr << "{";
_print(p.ff);
cerr << ",";
_print(p.ss);
cerr << "}";
}
template <class T>
void _print(vector<T> v)
{
cerr << "[ ";
for (T i : v)
{
_print(i);
cerr << " ";
}
cerr << "]";
}
template <class T>
void _print(vector<vector<T>> v)
{
cerr << "[\n";
for (int l = 0; l < v.size(); l++)
{
{
for (int k = 0; k < v[l].size(); k++)
cerr << v[l][k] << " ";
}
cerr << "\n";
}
cerr << "]";
}
template <class T, class V>
void _print(map<T, V> v)
{
cerr << "[ ";
for (auto i : v)
{
_print(i);
cerr << " ";
}
cerr << "]";
}
template <class T>
void _print(set<T> v)
{
cerr << "[ ";
for (T i : v)
{
_print(i);
cerr << " ";
}
cerr << "]";
}
const long long inf = 1e18;
const int MOD = 998244353;
const int MAX = 1e6;
bool isValid(string s)
{
int len = s.size();
for (int i = 0; i < len / 2; i++)
{
if (s[i] != s[len - 1 - i])
return false;
}
return true;
}
bool isregular(string t)
{
int n = t.length(), co = 0;
fr(i, 0, n)
{
if (t[i] == ')')
co--;
else
co++;
if (co < 0)
return false;
}
if (co > 0)
return false;
return true;
}
int32_t main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int t;
cin >> t;
while (t--)
{
ll n,k;cin>>n>>k;
vector<ll> arr(n);
for (ll i = 0; i < n; i++)
{
/* code */
cin>>arr[i];
}
sort(arr.begin(),arr.end());
ll s = 0;
for (ll i = 0; i < n; i++)
{
/* code */
s+=arr[i];
cout<<arr[i]<<" ";
}
cout<<endl;
cout<<s<<" ";
ll ans = max(s - k,0ll);
s=s-arr[0];
cout<<s<<" "<<ans<<endl;
ll x;
ll c = 1;
for(int i = n-1;i>0;i--){
s -= arr[i];
c++;
x = (c*arr[0] + s - k)/c + int( (c*arr[0] + s - k)%c > 0);
if(i==n-2){
cout<<"started"<<endl;
cout<< ((c*arr[0] + s - k)/c) <<" "<<int( (c*arr[0] + s - k)%c > 0)<<endl;
cout<<x<<" ";
}
x = max(x,0ll);
ans = min(ans, x + c-1);
}
cout<<endl;
cout<<ans<<"\n";
}
}
/*
7 8
1 2 1 3 1 2 1
๐๐จ๐๐๐ฒ ๐ฐ๐๐ฌ ๐ฆ๐ฒ ๐๐๐ฌ๐ญ ๐๐๐ฒ ๐จ๐ฎ๐ญ ๐จ๐ ๐ญ๐ก๐ ๐๐ ๐๐๐ฒ๐ฌ ๐จ๐ ๐ก๐๐ซ๐ ๐๐ก๐๐ฅ๐ฅ๐๐ง๐ ๐๐ฌ. ๐๐จ ๐ญ๐จ๐๐๐ฒ. ๐ ๐ฌ๐จ๐ฅ๐ฏ๐๐ ๐ ๐ช๐ฎ๐๐ฌ๐ญ๐ข๐จ๐ง๐ฌ.
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐ : ๐๐๐๐. ๐๐จ๐ฎ๐ง๐ญ ๐๐ฎ๐๐๐ซ๐ซ๐๐ฒ๐ฌ ๐๐ก๐๐ซ๐ ๐๐๐ฑ ๐๐ฅ๐๐ฆ๐๐ง๐ญ ๐๐ฉ๐ฉ๐๐๐ซ๐ฌ ๐๐ญ ๐๐๐๐ฌ๐ญ ๐ ๐๐ข๐ฆ๐๐ฌ
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐๐ข๐ง๐ค ๐: [https://lnkd.in/dwEPaurp]
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐ : ๐. ๐๐๐ญ ๐จ๐ซ ๐๐๐๐ซ๐๐๐ฌ๐
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐๐ข๐ง๐ค ๐: [https://lnkd.in/dM4hcmWR]
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐ : ๐. ๐๐๐ซ๐๐ง ๐๐ง๐ ๐๐จ๐๐๐๐
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐๐ข๐ง๐ค ๐: [https://lnkd.in/dQ7S4zpj]
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐ : ๐. ๐๐ซ๐๐ ๐๐ง๐ ๐๐ซ๐ซ๐๐ฒ
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐๐ข๐ง๐ค ๐: [https://lnkd.in/d98eExf4]
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐ : ๐. ๐๐ญ๐ซ๐ข๐ง๐ ๐๐ซ๐๐ง๐ฌ๐๐จ๐ซ๐ฆ๐๐ญ๐ข๐จ๐ง
๐๐ซ๐จ๐๐ฅ๐๐ฆ ๐๐ข๐ง๐ค ๐: [https://lnkd.in/dHdYWniQ]
#75dayschallenge
#challenge
#consistency
#Cp
#AlgorithmExplained
#ProblemSolving
#lessons
#learning
*/