I have seen that mostly great programmers use scanf in C++ while they can use cin with ios::sync_with_stdio(false); cin.tie(NULL); I want to know why??
Sorry because I don't know how to put things into a block .... Thanks in advance .....
# | 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 | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
I have seen that mostly great programmers use scanf in C++ while they can use cin with ios::sync_with_stdio(false); cin.tie(NULL); I want to know why??
Sorry because I don't know how to put things into a block .... Thanks in advance .....
Name |
---|
People use scanf because when the amount of test case are small the speed of scanf is still faster, but when the amount exceeds 1e7 cin overtakes scanf
cin is faster than scanf for large inputs? I did not know about that, can you provide some reference for that?
Reference
cin faster on 32-bit integers.
scanf / printf
more powerful thancin / cout
because it use regular expressions.And it's more helpful in debug when we need to print some debug information:
UPD: u can easy use scanf / printf in this problem, my solution with
scanf, printf, sprintf
A lot of what you mentioned can also be done with cin/cout, but sometimes it's a bit harder.
when you use sync_with_stdio you can no longer use some convenient and fast ways of input / output