Authors: MikeMirzayanov
Tutorial
Tutorial is loading...
Solution
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using pii = pair<int, int>;
using cd = complex<ld>;
void solve() {
int n;
cin >> n;
string s;
cin >> s;
for (char c = 'A'; c <= 'Z'; c++) {
int first = n;
int last = -1;
for (int i = 0; i < n; i++) {
if (s[i] == c) {
first = min(first, i);
last = max(last, i);
}
}
for (int i = first; i <= last; i++) {
if (s[i] != c) {
cout << "NO\n";
return;
}
}
}
cout << "YES\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
while (t--) {
solve();
}
}
Authors: MikeMirzayanov
Tutorial
Tutorial is loading...
Solution
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
void solve() {
int n;
cin >> n;
int res = 0;
for (ll pw = 1; pw <= n; pw = pw * 10 + 1) {
for (int d = 1; d <= 9; d++) {
if (pw * d <= n) {
res++;
}
}
}
cout << res << endl;
}
int main() {
int tests;
cin >> tests;
while (tests-- > 0) {
solve();
}
return 0;
}
Authors: MikeMirzayanov
Tutorial
Tutorial is loading...
Solution
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n;
cin >> n;
if (n == 1) {
cout << "1" << endl;
return;
} else if (n == 2) {
cout << "-1" << endl;
return;
}
vector<vector<int>> a(n, vector<int>(n));
a[0][0] = 1;
a[n - 1][n - 1] = n * n;
int x = n * n - 1;
for (int i = 1; i + 1 < n; i++) {
for (int j = i; j >= 0; j--, x--) {
a[i - j][j] = x;
}
}
x = 2;
for (int j = n - 2; j > 0; j--) {
for (int i = 0; i < n - j; i++, x++) {
a[n - i - 1][j + i] = x;
}
}
for (int i = n - 1; i >= 0; i--, x++) {
a[i][n - i - 1] = x;
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cout << a[i][j] << " ";
}
cout << endl;
}
}
int main() {
int tests;
cin >> tests;
while (tests-- > 0) {
solve();
}
return 0;
}
Authors: MikeMirzayanov
Tutorial
Tutorial is loading...
Solution
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n;
cin >> n;
map<int, int> a;
long long res = 0;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
x -= i;
res += a[x];
a[x]++;
}
cout << res << endl;
}
int main() {
int tests;
cin >> tests;
while (tests-- > 0) {
solve();
}
return 0;
}
Authors: Supermagzzz, Stepavly
Tutorial
Tutorial is loading...
Solution
#include<bits/stdc++.h>
using namespace std;
void solve()
{
int n;
cin >> n;
string s;
cin >> s;
int cnt = 0;
for(auto x : s)
cnt += (x == '*' ? 1 : 0);
int pos = -1;
int cur = -1;
for(int i = 0; i < n; i++)
{
if(s[i] == '*')
{
cur++;
if(cur == cnt / 2)
pos = i;
}
}
long long ans = 0;
cur = pos - cnt / 2;
for(int i = 0; i < n; i++)
if(s[i] == '*')
{
ans += abs(cur - i);
cur++;
}
cout << ans << endl;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int tc = 1;
cin >> tc;
for(int i = 0; i < tc; i++)
{
solve();
}
}
1520F1 - Guess the K-th Zero (Easy version)
Authors: Supermagzzz, Stepavly
Tutorial
Tutorial is loading...
Solution
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using pii = pair<int, int>;
using cd = complex<ld>;
void calc(int l, int r, int k) {
if (l == r) {
cout << "! " << l << endl;
return;
}
int m = (l + r) / 2;
cout << "? " << l << " " << m << endl;
int sum;
cin >> sum;
if ((m - l + 1) - sum >= k) {
calc(l, m, k);
} else {
calc(m + 1, r, k - (m - l + 1) + sum);
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, t, k;
cin >> n >> t >> k;
calc(1, n, k);
}
1520F2 - Guess the K-th Zero (Hard version)
Authors: MikeMirzayanov
Tutorial
Tutorial is loading...
Solution
#include <bits/stdc++.h>
using namespace std;
#define forn(i, n) for (int i = 0; i < int(n); i++)
map<pair<int,int>, int> cache;
void dec(int pos, int L, int R) {
cache[{L, R}]--;
if (L != R) {
int M = (L + R) / 2;
if (pos <= M)
dec(pos, L, M);
else
dec(pos, M + 1, R);
}
}
int main() {
int n, cases;
cin >> n >> cases;
forn(case_, cases) {
int k;
cin >> k;
int L = 0, R = n - 1;
while (L != R) {
int M = (L + R) / 2;
pair<int,int> range = make_pair(L, M);
if (cache.count(range) == 0) {
cout << "? " << range.first + 1 << " " << range.second + 1 << endl;
cin >> cache[range];
cache[range] = range.second - range.first + 1 - cache[range];
}
int value = cache[range];
if (k <= value)
R = M;
else {
k -= value;
L = M + 1;
}
}
cout << "! " << L + 1 << endl;
dec(L, 0, n - 1);
}
}
Authors: Supermagzzz, Stepavly, Aris
Tutorial
Tutorial is loading...
Solution
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using pii = pair<int, int>;
using cd = complex<ld>;
const int MAX_N = 2010;
int dd[4][2] = {
{1, 0},
{0, 1},
{-1, 0},
{0, -1}
};
void bfs(int sx, int sy, vector<vector<int>> &d, vector<vector<int>> &a) {
int n = d.size();
int m = d[0].size();
queue<pair<int, int>> q;
q.push({sx, sy});
d[sx][sy] = 1;
while (!q.empty()) {
auto [x, y] = q.front();
q.pop();
for (auto [dx, dy] : dd) {
int tx = x + dx;
int ty = y + dy;
if (tx >= 0 && ty >= 0 && tx < n && ty < m && d[tx][ty] == 0 && a[tx][ty] != -1) {
d[tx][ty] = d[x][y] + 1;
q.push({tx, ty});
}
}
}
for (auto &e : d) {
for (auto &i : e) {
i--;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, m, w;
cin >> n >> m >> w;
vector<vector<int>> a(n, vector<int>(m));
vector<vector<int>> d1(n, vector<int>(m));
vector<vector<int>> d2(n, vector<int>(m));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> a[i][j];
}
}
bfs(0, 0, d1, a);
bfs(n - 1, m - 1, d2, a);
ll bestFinish = 1e18;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (d2[i][j] != -1 && a[i][j] >= 1) {
bestFinish = min(bestFinish, a[i][j] + w * 1ll * d2[i][j]);
}
}
}
ll ans = w * 1ll * d1[n - 1][m - 1];
if (d1[n - 1][m - 1] == -1) {
ans = 1e18;
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (d1[i][j] != -1 && a[i][j] >= 1 && bestFinish != 1e18) {
ans = min(ans, w * 1ll * d1[i][j] + a[i][j] + bestFinish);
}
}
}
if (ans == 1e18) {
cout << -1;
} else {
cout << ans;
}
}
There is some issue with the editorials. Supermagzzz pls check.
Editorial is not perfect. please look into it and upload all c++ solutions with proper explanations.
The tutorials aren't visible.
You can read this article to read editorials now.
Write a new blog on CF (you don't have to post it), add a line [tutorial: <problem id>] (e.g. [tutorial: 1336A]), and preview it.
this is so pog
My solution to problem G:
The main observation is that we don't ever need to use more than 2 teleportations (because going from point $$$a -> b$$$ and then from $$$b -> c$$$ is strictly worse than going directly from $$$a -> c$$$). Therefore, we can calculate for each portal the cost required to use it as the first one, which is $$$dist(start, portal) * w + a[i][j]$$$ and in similar way the cost to go from a portal to the end as $$$dist(portal, end) * w + a[i][j]$$$ (by using bfs). The solution is either $$$dist[start][end] * w$$$ or the smallest cost to access a portal from the start plus the smallest cost to go from a portal to the end.
Code : https://codeforces.me/contest/1520/submission/115344755.
Sorry cuz I'm not really familier with C++, I read your code but haven't got it. I have a question is How you ensure the nearest portal from start and the nearest portal from end is not the same one?
You don't need to check for that case because going from $$$(1, 1)$$$ to $$$(n, m)$$$ without using any portal will be strictly cheaper than using the same portal twice.
Can we solve E with ternary search?
Yeah, we can.
don't know about ternary but did with binary search after long thinking (ofc i m grey) but i should work more to think like how the solution in editorial is posted here is my submission 115389196
Yes, it also can be solved using binary search, look at my submission if you are interested: submission
it's kind of ternary search.
parveen1981 I don't know if I should call it ternary search.Ternary search splits the graph into three segments. In my submission the second mid $$$mid2 = mid1 + 1$$$ is just to determine where the "binary" search should go. The graph is similar to $$$y = abs(x)$$$ and I am searching on the minimum point. if $$$moves2 > moves1$$$ then I know I am on the right of the minimum point then I should go to the left and if $$$moves2 < moves1$$$ then I know I am on the left of the minimum point then I should go to the right.
You are checking for two points in each iteration. In ternary search also, we check for two points. That's why I said. But your approach is slightly efficient. Thanks. From now on, I will apply same binary search as you did.
Hey, could you please explain your solution?
Observation 1: First if we want to make the sheeps in one row then the length of that row has to be the number of sheeps in the given string.
Now let's call the number of sheeps in the string to be k.
Observation 2: If we want to move the sheeps into a subsegment of length $$$k$$$ , then the first sheep that appears in the string has to be in the first position of the subsegment and the second sheep that appears in the position has to be in the second position of the subsegment and so on until we put all the sheeps in the string in the row.
Now to calculate the number of moves that we need to put the sheeps in a row for a subsegment consider a subsegment of length $$$k$$$ , that starts at position $$$x$$$ and let's call the position of the first sheeps in the string to be $$$s_1 , s_2 , s_3 ... s_k$$$ then the number of moves is $$$abs(s_1 - x) + abs(s_2 - (x + 1)) + abs(s_3 - (x + 2)) ... abs(s_k - (x + k - 1))$$$.
Finally, we have to calculate the minimum of that function you can use ternary search or binary search. Here is My Submission
It worth mentioning that there is a problem on Atcoder called Linear Approximation which is strongly related to this problem. When I put the equation of the number of moves I remembered this question then I copied my old code for it and edited a few lines and it got accepted.
If anything is not clear feel free to tell me I will explain more.
how did you apply binary search to minimise the above expression? can't get why there are 2 mids? in binary search
Yes,we can.I did this with ternary search.You can see my sol if interested.Your text to link here...
$$$F2$$$ and $$$G$$$ has the same codes.
Problem E has issues in solution code.
problem D was directly available here
My DP solution for E: we can find all pref[i] values where pref[i] shows how many moves we need to move all sheep to the left from i to i. If a sheep doesn't stay at i position, then pref[i] = pref[i — 1] + was ( was is an amount of sheep to the left from i), else pref[i] = pref[i — 1]. Same operations we can do for suff (we go from n to 1). Then we can simply check for every i: ans = min(ans, pref[i] + suff[i + 1]).
A similar approach: we can move each '.' either left of all left sheeps or right of all right sheeps. We just need to maintain sheeps till now and total sheeps.
Why does my solution to 1520E - Arranging The Sheep gives WA? I did it like this:
For the ith sheep, the number of moves so that all sheep to the right of it and all sheep to the left of it are aligned is:
Moves[i] = MovesLeft[i] + MovesRight[i].
With MovesLeft and MovesRight being the number of moves to align all the sheep from the left and right respectively. To calculate MovesLeft and MovesRight, one can simply do:
MovesRight[0] = 0 (There's no one to the right of the 0th sheep)
MovesRight[1] = MovesRight[0] + (Distance from 0 to 1) * 1
MovesRight[2] = MovesRight[1] + (Distance from 1 to 2) * 2
....
MovesRight[i] = MovesRight[i-1] + (Distance from i to i-1) * i
Similarly to the Left Moves.
Then at the end simply take the minimum of all Moves[i].
Since we do only linear loops, the complexity should be around O(N), fitting the constraints.
Thanks if someone had the goodwill to read :)
U dont have to push them all to the left or all to the right to get the answer
daviyan You made just one mistake..You initialized the value of ans as n,but in reality ans can be greater than that.So just initialize it with some higher value(say n*n) and it will work..
Indeed! It only worked with ans initialized as LLONG_MAX. Kinda sad that the error was only this little detail. Thanks a lot!
lol, I used the same approach and did the exact same mistake
In C, I just printed odd numbers first and then the even numbers row-wise, I thought this would be the intended solution.
For the last few contests, the topic bicoloring has been used in many problems on cf, so this solution comes naturally to people who are regularly solving cf problems.
Submission 115253830
Could someone give a proof (or hint) about the correctness of this simple problem E solution? I solved it during contest based on intuition, but struggle to give a formal reasoning. The solution differs from the one given by the editoral. Any help is appreciated.
Idea:
discard all leading and trailing empty spaces
initialise $$$ans=0$$$
for each remaining empty space at position $$$i$$$, increment $$$ans$$$ by $$$min(sheeps_l, sheeps_r)$$$ where $$$sheeps_l$$$ is the number of sheeps appears before position $$$i$$$, $$$sheeps_r$$$ is the number of sheeps appears after position $$$i$$$
this is the same as claiming that the middle sheep will not move
Could you elaborate on how the two approaches relate to each other?
UPD: I got it now.
Can you tell how they relate to each other?
As we iterate through the array from left to right. We have $$$min(s_l,s_r) = s_l$$$ before the middle sheep. Hence, it is best to move the spaces that appear before the middle sheep to the left. This is equivalent to moving the sheeps that appear before the middle sheep to the right, until they meet with the middle sheep. The middle sheep does not move.
Similarly, we have $$$min(s_l,s_r) = s_r$$$ after the middle sheep, so we can apply the same insight.
Example:
Say after trimming leading and trailing spaces, we have
The underlined sheep is the middle sheep. The editoral is wrong about the middle sheep number. It is not always $$$m=⌈\frac{n}{2}⌉$$$.
Now let's consider spaces before the middle sheep,
Obviously, 2 steps to the left. Now we have
Also 2 steps to the left.
Great, now let's consider spaces after the middle sheep.
Yes, 1 step to the right.
2 steps to the right.
2 steps to the right.
Finally, all sheeps are happily staying together.
I solved it using the same approach. I don't have any proof too but it makes sense when you look from the empty-spaces' point of view. You want to move the empty spaces out of the sheep so you either move them right or left.
Ah yes, for cases with consecutive sheeps on both left and right like $$$***\underline{.}**$$$, it is clear to move the space 2 steps to the right.
Originally, my suscipion arises for cases such as $$$***\underline{.}*..*$$$. Instead of considering the optimal position for sheeps (as in editoral), we can consider the optimal position of empty spaces. For this case, the optimal position for the space is 2 to the right.
Thanks, I think I grasped the concept.
interactive problem in cf == Binary Search
No.
Interactive problem in CF >= Binary Search Because F2 = Binary Search + Fenwick Tree (or Segment Tree)
F1: direct binary search.
F2: binary search but with extra steps (no need fenwick tree)
Finally i'll get 1600+ rating :)
Weird solution for "1520A — Do Not Be Distracted!" in Editorial.
Isn't this solution much faster and simpler?
This idea is simple to write, and maybe I would suggest writing this variant in the contest.
But set takes
O(NlogN)
time complexity, and we can remove thelogN
component by using a map(orvector<int> counter(26, 0)
) to store the previous occurrence. This way the time complexity is reduced toO(26*N)
which is more optimized :)Let's understand what the maximum number of vertices can be in the tree. We will consider each level separately. If the level number x is less than logt≤14, then we can spend no more than x of vertices (since there are simply no more vertices). If the level number is from 15 to 18, then we can spend no more than t vertices, so each request uses only one vertex per level. By limiting the number of vertices in this way, we get that there are no more than 214−1+4⋅104=56383, which fits into the constraints.
Can anyone explain these lines from the last paragraph of Tutorial of F2 more clearly?
It means that, after building the binary tree, suppose
1). You visit all the vertices if their level is less than 14, (such kind of total vertices are (2^14-1) )
2). Also, for every query we will descend the binary tree and we will only travel one vertex at each level at most so, for levels 15 to 18, there are 4 such vertices, hence the total vertices visited would be, 4*(# of queries) = 4*10000. total visited nodes: (2^14-1)+40000.
There is also another way to solve F2, which I found nicer and easy to prove. We can divide the complete array length n into blocks of size m (for ex. m = 32 ). If for every testcase we can find in which block the answer would lie then we can just binary search on that block and it will cost at max 5 queries (if m = 32).
Now, to find the required block. We can find the number of zeroes in each block during the 1st test case. After that, we can just traverse on blocks and see in which block kth zero will lie. And, finally decreases the count of zero from that block before moving to the next testcase.
To get no. of zeroes in each block, we will require. n/(block size) no. of queries. This is well within the constraints.
Here is the link of my submission:https://codeforces.me/contest/1520/submission/115301904
The above code can be optimized using some sort of data structure to find the required block, but given the TL of 4 sec, it will pass.
Thanks! I get it now.
What about 14-th level?
Sorry, I meant 1st case for levels less that equal to 14 instead of just less than 14.
then won't there be 2^15-1 vertices?
Levels starting from 1, (2^0+2^1+....2^13)these are the 14 levels.
Actually, why will we visit all the vertex level till 14? logt<=14 -- is said in the tutorial. But still now, I am confused why should I visit all the vertex till this level? Can you plz explain details in this point?
We are just showing the worst possible case, ofcourse it is not necessary to visit all the vertices if the 1st condition holds but in that queries total queries would be less than derived for the worst case.
In editorial of F2 it should be $$$2^{14}$$$ instead of $$$2^14$$$.
To correct it the editorialist should put 14 between {}, thats how the syntax works
Solutions for A-C
Solution of Problem D
Best solution + Explanation for Problem F1
Watched your explanation for D, it's amazing!
G can be solved with dp?
if bfs is dp yes
weak test cases in d
so sad, there should be atleast some pretest for (a[i] — i) < 0
Can I use Dijkstra to solve G?
no that gets MLE
Yes, 115309192
Thank you!
Time limit exceeded on test 134
So sad
dori is just geniosity
I managed to get it but very very tight. https://codeforces.me/contest/1520/submission/116037918
There is a LaTeX problem in the tutorial for F2, $$$2^{14}$$$ is mistyped as $$$2^1 4$$$ and confused me a bit at first.
Is the solution only given in C++ ? If no, when will Java solutions be uploaded ?
The solution will most likely not given in all languages. However it doesn't matter. The best approach(to learn, And get high rating in long run) is-
Step1: try problems yourself(maybe you have done this while the contest is running)
Step 2: view tutorial(just explanation, and only upto some lines after which you can solve it)
Step 3: if you are unable to understand ask someone, or ask through a blog.
Step 4: implement solution yourself.(important)
Nice
Can anyone tell why this code is giving TLE on test 125?
It has complexity $$$O(portals^2)$$$, which is too slow.
Would this work?
first sort all the portals by minimum distance of getting their from $$$(1,1) + a[i][j]$$$(value of portal) put them in list-1 say.
then in list-2 sort all the portals by minimum distance of getting their from $$$(n,m) + a[i][j]$$$(value of portal)
then we can pick the first item from both the list (if they are not same portal otherwise we will take 1st item from 1st list and 2nd item from 2nd list or 1st item from second list and 2nd item from 1st list and select whichever gives the minimum answer)
Can you help?
You don't actually need to store the distances in a separate array and then sort it later. You can keep track of the current minimum distance and update it accordingly.
You also don't have to check whether you picked the same portal twice as the cost from $$$(1, 1)$$$ to $$$(n, m)$$$ without using any portal will be strictly cheaper.
115297135
In problem E:
Shouldn't $$$m = \lceil\frac{k}{2}\rceil$$$?
Or $$$m = \lfloor\frac{k}{2}\rfloor$$$ according to the solution code?
The explanation counts the sheep starting from $$$1$$$ ($$$x_1, x_2, \dots$$$), while the code counts the sheep starting from $$$0$$$ (the variable
cur
).I see. I'm wondering whether the author intends that the explanation and the code are not consistent...
The option to submit file is not showing. I want to solve those probems which i couldn't do yesterday. When will that option be back? anyone knows it?
you'll be able to submit the code after the system test for this contest is over
Wanna share my miserable experience during the contest...
During the last 30 min, the queue is too long, I submitted G, but knew the result after the contest ended, so I don't have chance to debug and resubmit!
What a pity:<
In F2 many people have used ordered_set, order_of_key.
Can someone tell the functionality of this, or some source maybe. Thanks.
Ordered_set basically a set but with 2 extra functionality: We can find the kth element in the set and find the number of elements less than k. You can read about how to use it here
My solution for C was, if n != 2, print in appropriate way all odd numbers from 1 to n^2 and afterwards all even numbers.
More easy to implement & understand, I think.
Please can anyone can explain problem e?Thanks in advance.
the task was to calculate the minimum steps for which all the * will be adjacent to each other, and at each step either you can move any * forward or backward by one position, so it let's assume the string ..*..***...*..*.... here there are 6 * and we what we want is to make their position consecutive so we have our first * at position 3(one's notation) and last one at 15'th position so can make it like ******............. or .******............ or ..******......... or ...******......... or ....******........ and upto .............****** , we can notice it won't make any sense to start before the first * and * after last * . so we can iterate through all positions from where we can start our * and just calculate the steps for each and store the minimum value.(o(n^2) solution)
//optimizing it in the orignal string so, we can just precalculate the steps needed to make all the * from left of any position consecutive and the steps needed to make all * consecutive to right of any index, and we can just iterate through our precalculated values and take min(steps for left + steps for right) for entire precalculated value
A relatively easier approach for problem C (Not Adjacent Matrix):
At first, we try to fill the array with odd elements starting from 1 till n2, then we fill the remaining cells with even elements starting from 2 till n2. The only exception is when n is 2.
For reference, here is the link to my submission.
I think problem C can be easily solved by just simply printing the odd numbers till n*n and then the even numbers. For example, if n=4
Would anyone mind explaining E tutorial again to me? I've been trying for a while but I still didn't get the formula for the final position of the sheep
first group sheep with contiguous segment like ******...***.**....****** here we have four groups of sheep.now it is optimal to fix a group and full its left groups and right groups towards it and minimize the answer .for clear clear concept see here 115315773
Alternate solution for F-hard if anyone is interested:
Divide the array into blocks of size $$$20$$$. As a preprocess, store the number of zeros in all these blocks. It takes $$$200000/20==10000$$$ queries.
Now, we can answer each query: find the block where the zero is, and use $$$\lceil \log 20 \rceil == 5 $$$ per query to binary search this block.
In total, we use exactly $$$60000$$$ questions in worst case.
115436756 code with some comments
Can someone explain why in problem E, not moving the middle sheep and moving other sheep towards it is the optimal solution?
Consider all sheeps have moved. Then there is a position where all sheeps left of it where moved right, and all sheep right of it where moved left. One of both halfs is the bigger one, WLG consider it be left.
Then it would be a better solution to move all left sheeps one step less, and all right sheeps one step more.
Hi, guys! Trying to solve F2 with multiset. I have WA on 9 test. My someone help to find the mistake please? https://codeforces.me/contest/1520/submission/115447429 (Very simple code)
Hello!
You binary search should return r instead of l, as you only give ok position to r
But despite that, the interactor's a array changes after you giving you an answer, so there's no need to use multiset.
The most serious thing is your solution needs $$$t \cdot \lceil\log_2 n\rceil$$$ times to interact, which is much bigger than the limit when $$$n=200000$$$
weak pretests in G if you intended to make the dijkstra solution get TLE.
In problem C, it's enough to randomize the position of each number until a valid matrix is found. There's a small probability of generating an invalid matrix.
There is an block solution for F2.
Let $$$w$$$ be the block size, it will interact $$$\frac n w + t\cdot\lceil \log_2 w\rceil$$$, with $$$w=8$$$, it will interact not more than 55000 times
Uses BIT for prefix sum between blocks, the time comlecity is $$$O(n \log n + t \log^2 n)$$$
115414141
solution using Dijkstra's is Runtime error on test 146 ; PLEASE HELP
my submission : https://codeforces.me/contest/1520/submission/115467140
115471003
Problem F-2
I can't figure out why it is wrong. It gets wrong at test case 7, can you especially explain that? Because when I try, it seems fine!
Also I realized Jury's Ans != Participant Output but still Verdict is OK.. why is this so?
It shows the number of queries used and not the answer
If queries will be below 60000 and answers are correct then it will pass it
In problem G:
Here is link to my AC solution.
Here is link to my WA on test case 122 solution, it's exactly similar to previous solution, only difference is value of LINF as LONG_MAX.
Can anyone explain, why this error is caused????
long max : 2147483647 long min : -2147483648
Yes, my question is why do I get WA when I use value of LINF as LONG_MAX and AC when I use value of LINF as 1e18.
Also, that is not correct value of LONG_MAX. The value you have provided is value of INT_MAX.
https://drive.google.com/file/d/1M9jwduJbxzNFIDBPphn8bRpat-w7XXaX/view?usp=sharing
It's compiler issue, you are using an out dated compiler.
Check this: https://ideone.com/jFV2pg
https://drive.google.com/file/d/10G_OUniUqXHhxfH73dPFoa80tK5GwpJh/view?usp=sharing
OH MY GOOODDDD
What the hell is this. :(
why this code is giving the wrong answer.
include<bits/stdc++.h>
using namespace std; bool a[26],res; int main() { int t; cin>>t; while(t--) { int n; string s; cin>>n>>s;
}
https://codeforces.me/contest/1520/submission/115754029
says right there in your submission
Can anyone explain the logic for G. Thanks in advance!!
Anybody had different solutions to F2 and G?
For F2, i think i had a different idea from the one mentioned in the editorial. Basically, the idea is to divide the array in buckets of size $$$32$$$. For each bucket, we'll calculate initially the amount of zeros it contains. Then, for each query, we'll find which bucket contains the given $$$k$$$ and binary search to find its exact position. The number of queries is $$$n/32$$$ for preprocessing and around $$$50000$$$ for all the other queries.
Code : https://codeforces.me/contest/1520/submission/116861616
oh yess. I had the same idea, but my bucket size was 16. I implemented it and got WA, though. probably just a logic error.
For the problem F2-Guess the K-th Zero (hard). It is failing the 4th-test case but my output seems to be correct for the given string
00
.Can someone please help me figure out the issue: Submission link: https://codeforces.me/contest/1520/submission/119638144
Output on my terminal (for the 4th test case: 00):
I code a radix heap for my dijkstra's algorithm to solve G directly, but got tle on test 134. Can anyone tell me how to generate a test data like it, or how to hack my submission?
Oh I have passed now. You can see my submission here. I have to say I was so excited when it was Accepted!
For problem F2, I have another solution with block ideas and a segment tree.
Out of 60000 queries, let's spend the first $$$X$$$ queries on preprocessing.
My processing goes like this:
So total queries = $$$X + T*log(N/X)$$$
From this equation, we can show that for $$$X = 12600$$$ , $$$blocksize = 16$$$ we get minimum queries $$$52600$$$
Code: https://codeforces.me/contest/1520/submission/211581160
In problem D how do you guarantee that i < j?
How does n * (n-1)/2 guarantee that?