Hi codeforces
The longest codeforces activity streak (until now i think) has finally stoped after about 2 years.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Hi codeforces
The longest codeforces activity streak (until now i think) has finally stoped after about 2 years.
IOI organizers do not have the authority to comment on such an issue.
Why they didn't condemn the invasion of Iraq, Afghanistan, Yemen, Palestine and Syria?
Because their people are not European? or because the attacks were carried out by the United States, Saudi Arabia and Israel?
War is bad, but it must be bad for everyone, regardless of skin color or location.
We should not condemn an attacker and ignore another one. This is completely racism.
Hi everyone!
When I try to open a acmsguru problem from last unsolved it says "No such contest" and returns to the last page I was on.
It's because last unsolved link for sgu problems is https://codeforces.net/problemset/problem/99999/{ID}
But there is no such page. it should be https://codeforces.net/problemsets/acmsguru/problem/99999/{ID}
MikeMirzayanov can you fix this?
Thanks
Hi everybody!
This blog is about speeding up C/C++ compilers with precompiled headers.
Including lots of headers or big headers like bits/stdc++.h
will increase compilation time. This can be annoying even with high speed processors. We can solve this using precompiled headers.
You can compile a header like stdc++.h
to stdc++.h.gch
and compiler will use it instead of compiling the header every time you are compiling your code. Less processing => Less time.
Find your g++ default include directory
/usr/include/x86_64-linux-gnu/c++/{version}
C:\MinGW\lib\gcc\mingw32\{version}\include\c++
Compile headers you need (I recommend using bits/stdc++.h
instead of including lots of headers).
g++ {header name} {flags you use when compiling a normal code}
Put .gch files in the right place. You have 2 Options:
#include <header name>
#include "header name"
I recommend first options because the second one will work only when .gch files are in the code directory and it takes a little extra time to search in code.
Compile a code and feel the difference!
Comment your issues or suggestions.
Be good and code fast ;)
Hi everyone!
I think there is a problem with user activity.
logged in:
logged out:
Even though "What activity will be shown to other users" is set to All.
What's the problem?
Sorry for my bad English.
Name |
---|