Блог пользователя nocriz

Автор nocriz, история, 2 года назад, По-английски

Hello Codeforces!

I'm a 3-rd year undergraduate student currently located in the UK and I'm seriously thinking about the possibility of doing an internship in cryptocurrency (based in UK or China or even elsewhere) next summer.

I've been doing theoretical computer science or more specifically computational complexity for the most of the last year (mostly reading papers), and thus I'd like to do more about the more theoretical aspects of cryptocurrency (not "general engineering").

Can anyone please provide some information or insights? Thanks!

Полный текст и комментарии »

  • Проголосовать: нравится
  • +62
  • Проголосовать: не нравится

Автор nocriz, история, 2 года назад, По-английски

Hello, Codeforces!

"The Struggle" (Codeforces Gym 103329F) is a problem I authored which appeared in the HDU Multi-university Training, the Ptz Summer Camp and the Open Cup. Despite appearing in contests where there are a total of ~1300 three people teams, I know of few (possibly no more than 5) people who have learned and independently implemented the solution.

The problem is pretty much fun and the solution is quite easy to implement (actual implementation < 2kb). hos_lyric said that this is a good problem! From this blog you will easily learn how the algorithm works and how to implement the solution effortlessly. There shall be no more mystery, and you will become able to solve this OpenCup problem that few people have solved right today!

The problem statement is very simple: Given an ellipse $$$E$$$ that is contained in $$$(0,4 \times 10^6) \times (0,4 \times 10^6)$$$, calculate the value $$$\sum_{(x, y) \in E}(x \oplus y)^{33} x^{-2} y^{-1} \mod 10^9+7$$$ over all integer points $$$(x,y)$$$. In this problem, $$$\oplus$$$ is the bitwise XOR operation.

While the solution does not seem to be obvious, we shall consider a easier case: how should we compute $$$\sum_{x = 0}^{2^n-1}\sum_{y = 0}^{2^n-1} (x \oplus y)^{33} x^{-2} y^{-1} \mod 10^9+7$$$? i.e. If the aria is a square $$$[0,2^n-1] \times [0,2^n-1]$$$, how to calculate the value? (For our purposes we shall consider $$$0^{-2} = 0^{-3} \equiv 0 \mod 10^9+7$$$.)

This is quite simple! This can be done in $$$O(n \log n)$$$ time, using an algorithm called "Fast Walsh Hadamard Transforms" or FWHT or FWT or fast xor convolution. The convolution basically calculates $$$c_i = \sum_{x = 0}^{2^n-1}\sum_{y = 0}^{2^n-1} [x \oplus y = i]a_xb_y$$$. If we set $$$a_i = i^{-2}$$$ and $$$b_i = i^{-3}$$$, we can calculate $$$\sum_{i = 0}^{2^n-1} c_i \times i^{33}$$$ and this will be the answer for our easier case.

We shall then consider: What if my square is different than $$$[0,2^n-1] \times [0,2^n-1]$$$? What if the square we want to calculate on is $$$[x\times2^n,x\times2^n+2^n-1] \times [y\times2^n,y\times2^n+2 ^n-1]$$$?

This case turns out to be just as simple! We can see that as all bits in the binary representation except the last $$$n$$$ bit changes, for $$$0 \le i,j < 2^n$$$ we have $$$(x\times 2^n+i) \oplus (y\times 2^n+j) = 2^n(x \oplus y)+i \oplus j$$$. Based on this observation we can simply set $$$a_i = (i+x\times 2^n)^{-2}, b_i = (i+y\times 2^n)^{-3}$$$ and calculate $$$c_i = \sum_{x = 0}^{2^n-1}\sum_{y = 0}^{2^n-1} [x \oplus y = i]a_xb_y$$$. $$$\sum_{i = 0}^{2^n-1} c_i \times (i+(x \oplus y)2^n)^{33}$$$ will be the answer. The complexity will be $$$O(n \log n)$$$.

After making the above observations, we can come up with a quite efficient algorithm already! The algorithm simply works as the following pseudocode:

int solve(square S = [x*2^n,x*2^n+2^n-1]*[y*2^n,y*2^n+2^n-1]){
    if(S is completely in the ellipse){
        return the value calculated by the above discussed FWHT method.
    }
    Let the four sub-squares be S1,S2,S3,S4;
    return solve(S1)+solve(S2)+solve(S3)+solve(S4);
}

What is the complexity of this algorithm? Unfortunately, the complexity is $$$O(n \log^2 n)$$$. The analysis is not simple, but I would assure you that I did the analysis for simpler cases where the range is like $$$|x-y|<c$$$ and there is two logs. The analysis is omitted here. The algorithm does not run fast enough.

How shall we improve this algorithm? We shall look at the code for FWHT as follows, which is very simple:

for(int i=0;i<n;i++){
    for(int j=0;j<1<<(n-1);j++){
        if(j&(1<<i) != 0)continue;
        int l = a[c],r = a[c|1<<i];
        a[c] = l+r;a[c|1<<i] = l-r;
    }
}

There are two features of the algorithm which we will exploit.

  1. It is easy to see that we can "merge" two FWHT arrays of $$$[x\times 2^n,x\times 2^n+2^{n-1}-1]$$$ and $$$[x\times 2^n+2^{n-1},x\times 2^n+2^{n}-1]$$$ into the FWHT array of the interval $$$[x\times 2^n,x\times 2^n+2^{n}-1]$$$ in $$$O(n)$$$ time.
  2. Each element $$$b_i$$$ in a FWHT array is of an interval $$$[x\times 2^n,x\times 2^n+2^{n}-1]$$$ of array $$$a$$$ is a linear combination of elements in $$$a$$$. Namely, $$$b_i = \sum_{j = 0}^{2^n-1} a_j c_{ij}$$$, where coefficients $$$c$$$ are the same for any FWHT transform of the same length $$$2^n$$$.

Actually, the process of the FWHT algorithm is simply recursively merging arrays. The reason that this is not obvious is that the implementation is optimised to use loops.

Now, we can improve the $$$O(n \log^2 n)$$$ algorithm using these observations. We are going to calculate using the same squares the $$$O(n \log^2 n)$$$ algorithm would calculate, but for each square of edge length $$$m$$$, we will spend $$$O(m)$$$ instead of $$$O(m \log m)$$$ time.

We calculate the FWHT arrays bottom-up, each time merging intervals to intervals that are two time larger. After merging intervals, we will calculate all squares of that size which we were originally going to calculate. For each square $$$[x\times2^n,x\times2^n+2^n-1] \times [y\times2^n,y\times2^n+2 ^n-1]$$$, we can add the value from multiplying $$$a_{x2^n+i}$$$ and $$$b_{y2^n+i}$$$ to $$$sum_{(x\oplus y)2^n+i}$$$, as squares with same $$$x \oplus y$$$ are the same when inverting the FWHT arrays.

But how shall we invert the array $$$sum$$$? The answer is simple: Just as we can calculate the FWHT arrays bottom-up, we can also "merge" sum arrays! This may seem to not make sense, but if we merge sum array up and split it back down, the "contribution" of values at the $$$n$$$-th level will be the same. This is because all transforms are linear, and that the FWHT transform is invertible.

One issue in the complexity analysis of this question is to prove that the sum of the side lengths of all squares is $$$O(n \log n)$$$. This fact can be proved on the condition that the border function is a monotone function, and the boundary of the ellipse can be split into four monotone functions. The idea of the proof is to see that the y-intervals corresponding to each x-interval must be a constant plus some "extra" intervals, and for x-coordinate intervals of the same size, the total length of the "extra y-intervals" cannot exceed $$$n$$$. Since there is only $$$\log n$$$ sizes for x-intervals, the proof is done.

For implementation, please reference the author's solution.

Here is the author's solution for reference

During the HDU competition the problem was $$$\sum_{(x, y) \in E}(x \oplus y)^{3} x^{-2} y^{-1} \mod 10^9+7$$$. The team Inverted Cross wrote a data structures based solution which works on $$$O(3 n \log n)$$$ time (with large constant). The program was unfortunately, not fast enough.

Another solution written by Inverted Cross, but only works when 33 is substituted for 3

So there you have it, now you know how to solve "The Struggle"!

Полный текст и комментарии »

  • Проголосовать: нравится
  • +152
  • Проголосовать: не нравится

Автор nocriz, 3 года назад, По-английски

Hello, Codeforces!

The authors (actually, Rhodoks did the work) have uploaded XXII Open Cup, Grand Prix of Xi'an to the GYM.

This contest appeared in Ptz Camp 2021 Summer, XXII OpenCup and HDU multi university training.

Authors of the problems are from Xi'an Jiaotong University:

103329A - Yes, Prime Minister

Author: Rhodoks

103329B - Might and Magic

Author: Rhodoks

103329C - 0 Tree

Author: Rhodoks

103329D - Decomposition

Author: DistantYesterday

103329E - Median

Author: docriz

103329F - The Struggle

Author: nocriz

103329G - Power Station of Art

Author: nocriz

103329H - Command and Conquer: Red Alert 2

Author: nocriz

103329I - Typing Contest

Author: docriz

103329J - Game

Author: SunshinePie

103329K - Array

Author: SunshinePie

All coders are welcome to participate or upsolve the problems!

Полный текст и комментарии »

  • Проголосовать: нравится
  • +90
  • Проголосовать: не нравится

Автор nocriz, история, 3 года назад, По-английски

On many training camps for ICPC there are ratings like this where the first team is rated 200.

Is it possible for me to calculate this rating for my university's internal training? How is this rating calculated? Is there a rating calculator?

Thanks Codeforces!

Полный текст и комментарии »

  • Проголосовать: нравится
  • +10
  • Проголосовать: не нравится

Автор nocriz, история, 3 года назад, По-английски

The next codeforces round will end on 02:35 UTC+8, which is quite late for people in east asia.

I searched in contests for the last contest which is ending late, and it was VK Cup 2019-2020 — Elimination Round or Codeforces Round #623 , which was 16 months ago. That contest started 00:35 UTC+8 and ends 02:35 UTC+8.

Yeah — just pointing out some fact, I might still participate in the contest.

Полный текст и комментарии »

  • Проголосовать: нравится
  • -96
  • Проголосовать: не нравится

Автор nocriz, история, 3 года назад, По-английски

This blog is perhaps complete nonsense because becoming faster is perhaps equal to generally becoming better at competitive programming. I've found that many hard problems are approachable if given a longer time and that it is possible to get a decent ranking (perhaps ranked 5-15, since I am not that fast I cant) in many contests for just being fast. Solving problems faster also mean more time to spend on the problems few contestants solves.

So, how can I get faster? I believe the general answer will be "solve more problems" or "Practice more", but can anyone give some more concrete clue?

Sorry for posting this nonsense blog.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +274
  • Проголосовать: не нравится

Автор nocriz, история, 3 года назад, По-английски

A question I always wanted to ask, and has never seen a plausible answer:

Why is ICPC not sponsored by ACM since 2019?

Anyone has some ideas or information?

Полный текст и комментарии »

  • Проголосовать: нравится
  • +63
  • Проголосовать: не нравится

Автор nocriz, история, 3 года назад, По-английски

According to the Bill's answer Here:

Where and when will the ICPC World Finals 2021 take place?

Answer

So, there is 15 months left to the WF...... Not sure what I will be doing 15 months later.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +39
  • Проголосовать: не нравится

Автор nocriz, история, 3 года назад, По-английски

Hello Codeforces:

Many users on codeforces are uploading screencasts to youtube. During my past years as a participant, I never watched much screencast, and I think the same is true for many of my friends. Screencast just isn't popular or widespread among Chinese OI or ICPC participants.

So, though I found that these are truly valuable videos for improving performance, I still don't fell sure about how I should watch them. How are screencasts supposed to work? Should I watch one from begin to end for 2+ hours? What are the benefits and how can I get the most out of screencasts?

Thanks!

Полный текст и комментарии »

  • Проголосовать: нравится
  • +49
  • Проголосовать: не нравится

Автор nocriz, 4 года назад, перевод, По-русски
  • Проголосовать: нравится
  • +113
  • Проголосовать: не нравится

Автор nocriz, история, 4 года назад, По-английски

Hello, Codeforces!

A few days ago, the blog about the book "Looking for a challenge 2" was posted on Codeforces, I read a quarter of the book and found that the quality was really good. I talked with a few friends about the book and we decided to buy the popular book "Looking for a challenge 1", which should be good as well. At first we considered buying a paperback version, but it was quite expensive and I'm afraid that some problems may occur during the shipment from Poland to China.

After a few days I found the book "Looking for a challenge" was available as a e-book (pdf) on the website "http://ibuk.pl" for 66,50 zł, the cheapest I can find on the internet. Although I can't read Polish, I used Google translate to buy the book. After I purchased the book with a master card, I was able to download the pdf version of the book. With the excitement, I started to download the book. The internet speed was about 100 Kbyte per second, and the book was about 60MB. I thought that my Internet was too slow, so I changed the network connection a few times and refreshed. After that, I found that I reached the download limit, and was not able to download anymore.

So, the situation is that I spent 66,50 zł (about 17.5 US Dollars) for nothing, since I can't download anymore and I never finished downloading even once. I was really depressed since it is quite a large sum of money for me, and that I still don't have the book. I tried to e-mail the website (using google translate, of course). I figured that there may be Polish participants on Codeforces who knows about the website ibuk.pl or similar situations, so I posted this blog to ask for help. What should I do? Is it likely that the website will let me download again or send me the book? Who else can I contact in this situation?

I'm grateful for any of your help! Thank you!

UPD : I received the reply three days later and got the PDF now! Thanks everyone.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +83
  • Проголосовать: не нравится

Автор nocriz, история, 5 лет назад, По-английски

TopCoder has been a famous competitive programming platform and I've heard of TopCoder for years. I've never participated in TopCoder rounds though. Like many of my friends, I started to really participate in online rounds since 2018, and Topcoder's fame already seemed to fade.

Last year, I did attempt to participate in a SRM, but I met various difficulties. Possibly I'm not clever enough but participating in SRM is indeed much complicated than participating a Codeforces Round.

  • The java applet was confusing.
  • I didn't know where to find the time of the next SRM. Although I saw posts of SRM announcements on Codeforces, it is usually the day after the round.
  • The TopCoder website didn't seem like a competitive programming website.

In the end, I didn't success in participating in any SRM. A few days ago, I finally find the current Topcoder Competitive Programming Page with the future contest time, solution, problem archive etc. The Link. (Last year, all I found was the arena. That was indeed confusing to me, I never imagined that there is a separate page.) It is finally possible for me to start participating in TopCoder, but I found that on TopCoder, SRM participants in 2019 are typically ~300, while a few years ago there were ~2000 people in a single round.

I'm a bit worried that TopCoder is dying and start participating on a new platform is probably not a good idea for me, and that I will encounter more difficulties or that there will be even less or none participant in the future. However, I heard that the problems were good, Is it true? What are your suggestions for someone that wants to participate in TopCoder Contests in late 2019 to make it easier?

Полный текст и комментарии »

  • Проголосовать: нравится
  • +90
  • Проголосовать: не нравится