1618A - Polycarp and Sums of Subsequences
Idea: Brovko, preparation: Brovko
Tutorial
Tutorial is loading...
Solution (Brovko)
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
for(int i = 0; i < t; i++)
{
vector <int> b(7);
for(int i = 0; i < 7; i++)
cin >> b[i];
cout << b[0] << ' ' << b[1] << ' ' << b[6] - b[0] - b[1] << endl;
}
}
Idea: BledDest, preparation: awoo
Tutorial
Tutorial is loading...
Solution (awoo)
for _ in range(int(input())):
n = int(input())
s = input().split()
for i in range(n - 3):
if s[i][1] != s[i + 1][0]:
s.insert(i + 1, s[i][1] + s[i + 1][0])
break
else:
s.append(s[-1][1] + 'a')
print(s[0][0], end="")
for i in range(n - 1):
print(s[i][1], end="")
print()
Idea: BledDest, preparation: BledDest
Tutorial
Tutorial is loading...
Solution (BledDest)
#include <bits/stdc++.h>
using namespace std;
void solve()
{
int n;
cin >> n;
vector<long long> a(n);
for(int i = 0; i < n; i++)
{
cin >> a[i];
}
vector<long long> g(a.begin(), a.begin() + 2);
for(int i = 0; i < n; i++)
{
g[i % 2] = __gcd(g[i % 2], a[i]);
}
vector<bool> good(2, true);
for(int i = 0; i < n; i++)
{
good[i % 2] = good[i % 2] && (a[i] % g[(i % 2) ^ 1] > 0);
}
long long ans = 0;
for(int i = 0; i < 2; i++)
if(good[i])
ans = max(ans, g[i ^ 1]);
cout << ans << endl;
}
int main()
{
int t;
cin >> t;
for(int i = 0; i < t; i++)
{
solve();
}
}
Idea: BledDest, preparation: BledDest
Tutorial
Tutorial is loading...
Solution (BledDest)
def solve():
n, k = map(int, input().split())
a = list(map(int, input().split()))
a = sorted(a)
cost = sum(a[0:n-2*k]) + sum(map(lambda x: a[x+n-2*k] // a[x+n-k], range(0, k)))
print(cost)
t = int(input())
for i in range(t):
solve()
Idea: shnirelman, preparation: shnirelman
Tutorial
Tutorial is loading...
Solution (shnirelman)
#include <bits/stdc++.h>
using namespace std;
using li = long long;
const int N = 50013;
int b[N];
int a[N];
void solve() {
int n;
cin >> n;
li sumb = 0;
for(int i = 0; i < n; i++) {
cin >> b[i];
sumb += b[i];
}
li d = n * 1ll * (n + 1) / 2;
if(sumb % d != 0) {
cout << "NO" << endl;
return;
}
li suma = sumb / d;
for(int i = n - 1; i >= 0; i--) {
li res = (b[i] - b[(i + 1) % n] + suma);
if(res % n != 0 || res <= 0) {
cout << "NO" << endl;
return;
}
a[(i + 1) % n] = res / n;
}
cout << "YES" << endl;
for(int i = 0; i < n; i++)
cout << a[i] << ' ';
cout << endl;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int t;
cin >> t;
for(int i = 0; i < t; i++)
solve();
}
Idea: Lankin, preparation: Lankin
Tutorial
Tutorial is loading...
Solution (awoo)
a, b = map(int, input().split())
s = bin(b)[2:]
t = bin(a)[2:]
if s == t:
print("YES")
exit(0)
for q in [t + '1', t.strip('0')]:
for l in range(len(s) - len(q) + 1):
r = len(s) - len(q) - l
if '1' * l + q + '1' * r == s or '1' * l + q[::-1] + '1' * r == s:
print("YES")
exit(0)
print("NO")
Solution (BledDest)
#include<bits/stdc++.h>
using namespace std;
string go(string t)
{
while(t.back() == '0') t.pop_back();
reverse(t.begin(), t.end());
return t;
}
string to_bin(long long x)
{
if(x == 0)
return "";
else
{
string s = to_bin(x / 2);
s.push_back(char('0' + x % 2));
return s;
}
}
int main()
{
long long x, y;
cin >> x >> y;
set<string> used;
queue<string> q;
q.push(to_bin(x));
used.insert(to_bin(x));
while(!q.empty())
{
string k = q.front();
q.pop();
if(k.size() > 100) continue;
for(int i = 0; i < 2; i++)
{
string k2 = go(k + string(1, char('0' + i)));
if(!used.count(k2))
{
used.insert(k2);
q.push(k2);
}
}
}
if(used.count(to_bin(y)))
cout << "YES\n";
else
cout << "NO\n";
}
Idea: BledDest, preparation: BledDest
Tutorial
Tutorial is loading...
Solution (awoo)
#include <bits/stdc++.h>
using namespace std;
#define forn(i, n) for(int i = 0; i < int(n); i++)
const int N = 400 * 1000 + 13;
int n, m, k;
int a[N], b[N];
int q[N];
int p[N];
multiset<int> wst[N], bst[N];
long long sum;
int getp(int a){
return a == p[a] ? a : p[a] = getp(p[a]);
}
void unite(int a, int b){
a = getp(a), b = getp(b);
if (wst[a].size() + bst[a].size() < wst[b].size() + bst[b].size()) swap(a, b);
for (auto it : wst[b])
wst[a].insert(it);
for (auto it : bst[b])
bst[a].insert(it);
wst[b].clear();
bst[b].clear();
while (!bst[a].empty() && !wst[a].empty() && *bst[a].begin() < *wst[a].rbegin()){
sum -= *bst[a].begin();
sum += *wst[a].rbegin();
bst[a].insert(*wst[a].rbegin());
wst[a].insert(*bst[a].begin());
bst[a].erase(bst[a].begin());
wst[a].erase(--wst[a].end());
}
p[b] = a;
}
long long ans[N];
struct event{
int x, t, i;
};
int main() {
scanf("%d%d%d", &n, &m, &k);
forn(i, n)
scanf("%d", &a[i]);
forn(i, m)
scanf("%d", &b[i]);
forn(i, k)
scanf("%d", &q[i]);
vector<pair<int, int>> tot;
forn(i, n) tot.push_back({a[i], 1});
forn(i, m) tot.push_back({b[i], 0});
sort(tot.begin(), tot.end());
sum = accumulate(a, a + n, 0ll);
forn(i, n + m){
p[i] = i;
wst[i].clear();
bst[i].clear();
if (tot[i].second) bst[i].insert(tot[i].first);
else wst[i].insert(tot[i].first);
}
vector<event> ev;
forn(i, n + m - 1) ev.push_back({tot[i + 1].first - tot[i].first, 0, i});
forn(i, k) ev.push_back({q[i], 1, i});
sort(ev.begin(), ev.end(), [](const event &a, const event &b){
if (a.x != b.x) return a.x < b.x;
return a.t < b.t;
});
for (auto it : ev){
if (it.t == 0)
unite(it.i, it.i + 1);
else
ans[it.i] = sum;
}
forn(i, k) printf("%lld\n", ans[i]);
}
Solution (BledDest)
#include<bits/stdc++.h>
using namespace std;
long long get(const vector<int>& pcnt, const vector<long long>& psum, pair<int, int> seg)
{
int L = seg.first;
int R = seg.second;
int cnt = pcnt[R] - pcnt[L];
return psum[R] - psum[R - cnt];
}
int main()
{
int n, m, q;
scanf("%d %d %d", &n, &m, &q);
vector<int> a(n), b(m);
for(int i = 0; i < n; i++)
{
scanf("%d", &a[i]);
}
for(int i = 0; i < m; i++)
{
scanf("%d", &b[i]);
}
vector<int> pcnt = {0};
vector<long long> psum = {0ll};
vector<pair<int, int>> order;
for(int i = 0; i < n; i++) order.push_back(make_pair(a[i], 1));
for(int i = 0; i < m; i++) order.push_back(make_pair(b[i], 0));
sort(order.begin(), order.end());
int z = n + m;
for(int i = 0; i < z; i++)
{
pcnt.push_back(pcnt.back() + order[i].second);
psum.push_back(psum.back() + order[i].first);
}
long long cur = 0;
for(int i = 0; i < n; i++)
cur += a[i];
set<pair<int, int>> segs;
for(int i = 0; i < z; i++)
segs.insert(make_pair(i, i + 1));
map<int, vector<int>> events;
for(int i = 0; i < z - 1; i++)
events[order[i + 1].first - order[i].first].push_back(i);
vector<pair<int, long long>> ans = {{0, cur}};
for(auto x : events)
{
int cost = x.first;
vector<int> changes = x.second;
for(auto i : changes)
{
auto itr = segs.upper_bound(make_pair(i, int(1e9)));
auto itl = prev(itr);
pair<int, int> pl = *itl;
pair<int, int> pr = *itr;
cur -= get(pcnt, psum, pl);
cur -= get(pcnt, psum, pr);
pair<int, int> p = make_pair(pl.first, pr.second);
cur += get(pcnt, psum, p);
segs.erase(pl);
segs.erase(pr);
segs.insert(p);
}
ans.push_back(make_pair(cost, cur));
}
for(int i = 0; i < q; i++)
{
int k;
scanf("%d", &k);
int pos = upper_bound(ans.begin(), ans.end(), make_pair(k + 1, -1ll)) - ans.begin() - 1;
printf("%lld\n", ans[pos].second);
}
}
At the beginning of the year i became expert, hopefully at the end of the year(tomorrow) i will become expert again. Nice problemset. Thanks for fast editorial.
Not sure if anyone else has made this connection yet, but Problem $$$A$$$ looks very similar to Bronze Problem 1 from the 2020 December USACO competition: http://www.usaco.org/index.php?page=viewproblem2&cpid=1059
Haha, I think they are the same problem in essence :p
I also had the same thought, that's why I submitted A pretty quickly (I just looked up for my old submission)
Even if the problem matches I think it will take less time to solve than to search for the actual problem itself :)
Yes, I have already made this connection : IMO, it's a pretty classic problem.
I solved D using Knapsack DP , I found out that last 2*k elements would be paired . So while pairing them I should try to keep elements with same value in a set , as splitting them will contribute 1 to answer , and not splitting will contribute 0 . I implementated it using Bitset Link
Edit : It got hacked :((
Would anyone be kind enough to explain to me why these 2 submissions don't have the same result for problem e(https://codeforces.net/contest/1618/submission/139338958 https://codeforces.net/contest/1618/submission/139339631)? In the first submission I did a calculation using long long's in a cout statement, and in the second submission I swapped that with a calculation using a temp variable first then printing that variable. Is this something that I should be careful about and why does this happen? Thanks!
Inside if statement you r doing sum%n*(n+1)/2 which is equivalent to (sum%n)*(n+1)/2 . Hence WA.
Why is the pairing in 1618D - Array and Operations optimal? It seems obvious but I can't find a proof for it.
We can look this as an inequality. Let's suppose a >= b >= c >= d >= e >= f >= g >= h. And k=3. (it's a simplified version, but it can be generalized to any kind of array).
First, we can see that the optimal solution gives \floor {d/a} + \floor {e/b} + \floor {f/c} + g + h.
What will the answer become if we swap elements e and g ?
It gives : \floor {d/a} + \floor {g/b} + \floor {f/c} + e + h.
To prove that the latter is less than the former, we could prove that the difference between the former and the latter (former-latter) is <= 0.
That brings us to prove that \floor {d/a} + \floor {e/b} + \floor {f/c} + g + h. - \floor {d/a} + \floor {g/b} + \floor {f/c} + e + h. <= 0. In other words \floor{e/b} + g — \floor{g/b} — e <= 0. Which is equivalent to (\floor{e/b} — \floor{g/b}) + (g-e) <= 0. The case e=g is trivial, suppose e > g. Than (\floor{e/b} — \floor{g/b}) <= 1 and (g-e) <= -1. Summing up these two inequalities, we obtain (\floor{e/b} — \floor{g/b}) + (g-e) <= 0, as desired.
I liked how you did it bro. How can I learn to write a proof like that?
Read other people's proofs, this is how I learned how to write.
I solved D using Greedy here is the link https://codeforces.net/contest/1618/submission/139346218
Yay, I also did the same :)
It counts the occurrence of each unique element and then puts it in a priority queue (we are trying to minimize the cnt of the element with the maximum cnt) so each time we will delete two elements with maximum cnt until there is only one unique element left(we do this on the last 2*k elements in sorted array).
Same here.
Can someone helps me? In 2nd problem why my code fails the test cases https://codeforces.net/contest/1618/submission/139289954
Try out this test case
1 7 bb ab bb ba ab
Your code will result bbabaab
But when you form Bigram from this : bb ba ab ba aa ab
According to your output 'ba' and 'aa' two are missing bigrams that's not possible
Correct answer should be bbabbab
As bigrams formed from this are bb ba ab bb ba ab
Correct me if I am wrong
Can you help me, how you reach this test case?
You can check my submission it's easy and simple code
My Submission
I tried D with DP I was getting WA for testcase 2. I am not getting where I am going wrong,
Please check my submission and please tell where I am going wrong
Submission Link : My Submission Code
Thanks in advance for helping
1
5 2
1 5 5 4 4
Your ans : 3
Expected : 1
Yes :(
Got your point , I am just checking of i+1,j-1 and i,j-2. That's mistake.Is there any way to solve this problem using dp?
Hi, I think I might confuse something. But in the F problem ( Reverse) how can you turn 23 (10111) to 59 (111011) ?
I had solved problem C by taking the LCM of both GCDs and then checking if the array is divisible by the LCM for both the cases and printing the respective GCD, but the code didn't pass the test. Below is the link https://codeforces.net/contest/1618/submission/139321336 I did the same thing but this time I used GCD which passed all the tests. Below is the link — https://codeforces.net/contest/1618/submission/139323889 Can someone explain what is the difference between both the codes and why the LCM one didn't pass the test?
LCM could cross long long limit. For example LCM of 10^18-1 and 10^18 cannot fit in long long. (ai's were upto 10^18 in problem)
can anyone please explain the intuition behind problem C?
With practice, you will see that for these kinds it's better to evaluate all the possibilities to arrive at a conclusion. Adjacent elements needs to be colored differently...So the only two possibilities here are (even index elements colored blue and odd index elements colored red) and vice versa. Evaluate whether any of these can happen. To do so, see how can you find out a number that will divide all the numbers present at alternate indexes--->so you need to find the gcd of those numbers and then check whether the numbers at other indexes are divisible by that ...Could I make it clear ?
Bt how can you prove that it will be the greatest common divisor but not other any divisor?
Because, see, if the other numbers are not divisible by GCD , then GCD is the answer. If GCD divides at least one of the numbers that is supposed not to be divisible by the GCD ,then all the factors of GCD will also divide that number. Let GCD=x, the number that it divides is y which is supposed not to be divisible by x . Now let z be a factor of x. if x divides y, then z also divides y. if any other number is there other than GCD that divides all the numbers that it is supposed to divide, then this divisor will always be a factor of GCD. So it will face the same obstacle as the GCD faces .
thanks
Can anyone explain what is "string(1, char('0' + i))" this line doing ??? Thanks!! This is in editorial of F.
convert int 1 to char '1' then to string "1"
can anyone help me figure out why this program for Problem F terminates ? It passes all the test cases:
Stupid question about Problem C:
I'm trying to understand this line of code:
--> good[i % 2] = good[i % 2] && (a[i] % g[(i % 2) ^ 1] > 0);
Specifically this part:
--> && (a[i] % g[(i % 2) ^ 1] > 0);
What's the purpose of the XOR here?
Same question about this line:
--> ans = max(ans, g[i ^ 1]);
XOR flips the values from 0 to 1 and vice versa.
You need to use Markdown in the code(like
good[i % 2] = good[i % 2] && (a[i] % g[(i % 2) ^ 1] > 0);
.Just testing...
---
test of bold font
---
test of italics
Stop useless posts/comments!
good contest but it need to strong pretest cases in problem d and f finally i realy sorry for every one get wrong answer in d test 25 i put it in hacks , i tried to cover corner case not to hack some one
If possible, add graphs tag to problem F.
In problem G can someone clarify how to use DSU to reach the solution. I understand the creation of graph but am unclear on how to use DSU.
I didn't use graph or DSU. It's just interval merging.
Can you please explain basic idea of your solution, I mean just a walkover. Thanks in advance.
P.S: I could see your code but I don't want to as I want to code it on my own after knowing the basic idea you have implemented in your solution.
First combine array A and B as a new array v, then sort it. what you need to calculate is the sum of maximal x values of each interval [i, j] where v[l] + k <= v[l + 1] (i <= l < j). So, initially you have n intervals, [1,1], [2,2], ... , [n, n] where n = v.size(). For each given k in increasing order, find out all i satisfying v[i] + k <= v[i + 1] (from a pre-sorted array). Merge the interval end at i and the interval start at i + 1. I used two arrays left and right to store intervals. use prefix sum array to calculate the number of elements coming from array A between [i, j] in O(1), then use another prefix sum array to calculate the sum of maximal x values of [i, j] in O(1). You can check my last AC code.
https://codeforces.net/contest/1618/submission/139274778 this my code of E question and I just got msg that my code is significantly match with this code https://codeforces.net/contest/1618/submission/139261121. please can anyone look into this because both codes are not same and I haven't done any unfair mean, you can also look into my profile.
Yes, both codes are very different... Surprised how they are significantly matching.
Hey Everyone
Can anybody tell me how 'testcase: 1 576460752303423487' for problem F gives YES
According to me if x = 1.
You can change it to only 111...(any no of times)
but in this testcase, you can change it to 10000..(58 times). But How?
576460752303423487 is 11...11 (59 times)
Binary for 576460752303423487 is "11111111111111111111111111111111111111111111111111111111111". So we can change 1 to 576460752303423487.So it gives "Yes".
Can Somebody help with problem C my code was giving me TLE but I think its logic is similar to the solution?
You need to use Markdown in your code(the first 7 lines).
1) In problem G, what is the proof that the rebalancing step in the
unite
function (i.e.while (*bst[a].begin() < *wst[a].rbegin())
) won't take too long in total?2) In problem D, how to prove that the answer is:
after sorting the array in non-increasing order? (I got AC with it and it seemed very intuitive)
$$$f$$$ is the frequency of the most repeated element in $$$a[1..2k]$$$.
the first one only runs n — 1 times, as there is only n — 1 segment and each one will be accessed only once.
Oh, I see. If I understood correctly, we are only increasing stuff, and we can do so at most $$$O(n)$$$ times.
yes.
Regarding your second question, I had the same observation. This is my informal logic. We know that we are going to remove the first 2k elements when the array is sorted in non-increasing order. For each pair we remove, as long as the two elements are different, we can guarantee that they won't add anything to the score. Therefore, we are only concerned with pairs with two identical elements. We want to minimize those pairs in order to minimize the score. After some analysis, we can see that only the most repeated element in a[1...2k] matters. Consider the expression 2k — max_dupes, where max_dupes is the frequency of the most repeated element x in a[1...2k]. 2k — max_dupes represents the number of elements that are different from x, therefore, 2k — max_dupes operations will add nothing to the score. The remaining number of operations, which are unavoidable, will each add 1 to the score (bc numerator = denominator), which results in the expression k — (2k — max_dupes) = max_dupes — k. This equals the extra score added to the remaining sum of a[2k+1...n]. If max_dupes — k is <= 0, we know that there are no unavoidable pairs with two identical elements therefore we add max(0, max_dupes — k).
Can someone help me? In problem F, I do not know why my code fails. Thanks a lot.
https://codeforces.net/contest/1618/submission/139439943
Hi, I think you have to change 18 to 63 because we want to convert x and y to binary numbers and they are up to 10 ^ 18 which means their binary representation has up to 63 bits.
what means g[(i % 2) ^ 1] ?
You can see this comment.
There's an even simpler solution for D. First of all, you greedly add the first n — 2k numbers (after sorting of course), then, for the rest of the numbers, you check how many times each number appears. If there's a number that appears more than k times, then you know that there's no avoiding in adding one to the answer; you simply add the amount it appears — k to the answer.
139271250
Can anyone tell me what is the time complexity of the second solution of problem F?
For E, could you use FFT? I see a system of linear equations, and the resulting matrix is circulant. Hence, you could use a FFT and solve it in nlogn time. It's slower than the accepted solution, however. Still would be interesting to do.
Hey man, I thought of solving a system of linear equations as well, I ended up writing about my solution and just saw your comment. Here's it: https://codeforces.net/blog/entry/97927?#comment-1035215
It is not FFT unfortunately, but it is linear time
Instead of pairing up the last 2k numbers like described in the tutorial for problem D, is it possible to just run the following O(n^2) algorithm: For each i in the range [n — 2k + 1, n — 1] we will look for the smallest index j such that arr[i] < arr[j] and then set arr[i] and arr[j] to -1 so that they aren't used anymore. And if we can't find any index j that works, just look for the smallest index j such that arr[i] = arr[j]. Then you just increase answer by 1 and once again set arr[i] and arr[j] to be -1. Finally, add the first n — 2k numbers to the answer as described in the tutorial.
My submission implements this algorithm and didn't pass, so I am wondering if there are any edge cases that break my O(n^2) algorithm. Here is my submission, just in case it is needed.
143369978
Here is a very interesting way to do E through solving a system of equations. Firstly, it is very easy to transcribe the problem into a system of equations. For example, when $$$n=3$$$, we have:
$$$1a_1 + 3a_2 + 2a_3 = b_1$$$
$$$2a_2 + 1a_2 + 3a_3 = b_2$$$
$$$3a_1 + 2a_2 + 1a_3 = b_3$$$
I chose to solve the systems using the inverse matrix method. In this method the goal is to calculate the inverse matrix of the system and multiply it by the constant vector ($$$b$$$) to get the solution vector.
Of course, calculating the inverse of our matrix is too computationally expensive, but due to the patterns exhibited on our matrix, the inverse matrix will also show some patterns.
After some experimentation with web tools to calculate some inverse matrices, I came to the conclusion that the inverse matrix for matrices derived from this problem:
Furthermore, each of the 3 unique cell values exhibit a pattern of their own as $$$n$$$ varies:
We now have enough knowledge to generate the inverse matrix of our system of equations very quickly. By taking advantage of the pattern in each row (noted previously), we can calculate the product of our inverse matrix with the constant vector in $$$O(n)$$$ time through a sliding window method.
Here is the final solution: https://codeforces.net/contest/1618/submission/208803182
While this solution is interesting, it's biggest crutch is that my observations for the inverse matrix would have to be correct for all $$$n$$$. I have very little experience in this area so all I could do is hope for the best. I would love to hear some rationales from some people who are more experienced in this area!
Can We Solve Problem D Using Dynamic Programming?