vote up 1 vote down star

Hello,

I don't know if this is true, but when I was reading FAQ on one of the problem providing sites, I found something, that poke my attention:

Check your input/output methods. In C++, using cin and cout is too slow. Use these, and you will guarantee not being able to solve any problem with a decent amount of input or output. Use printf and scanf instead.

Can someone please clarify this? Is really using scanf() in C++ programs faster than using cin >> something ? If yes, that is it a good practice to use it in C++ programs? I thought that it was C specific, though I am just learning C++...

flag

73% accept rate
3  
My guess: bad programmer blames standard libraries for poor performance. Kind of like the always humorous "I think I found a bug in GCC" cry. – John Kugelman Jun 25 at 4:10
1  
@eclipse: the ACM problems I've worked on for competitions have a substantial amount of input/output and your program has to solve the questions in under something like 60 seconds... it becomes a real issue here. – Mark Jun 25 at 4:16
4  
--- that said, if you need to rely on scanf() for that extra performance boost, you're going about the problem the wrong way :) – Mark Jun 25 at 4:17
1  
Just as an observation - I played around with it, and on the 2nd problems (PRIME1) - using the same algorithm, both times, once using cin/cout and once with scanf/printf and the first version was faster than the second (but close enough that it's statistically irrelevant). This is one of the problems that is marked as being input/output intensive, and the method of input/output made no statistical difference whatsoever. – Eclipse Jun 25 at 18:15
1  
@Eclipse - thanks for the information about testing both methods. I'm sad though - I tried to blame cin and cout, but now I know that my algorithm sucks:) – zeroDivisible Jun 25 at 18:32
show 3 more comments

7 Answers

vote up 10 vote down check

Probably scanf is somewhat faster than using streams. Although streams provide a lot of type safety, and do not have to parse format strings at runtime, it usually has an advantage of not requiring excessive memory allocations (this depends on your compiler and runtime). That said, unless performance is your only end goal and you are in the critical path then you should really favour the safer (slower) methods.

There is a very delicious article written here by Herb Sutter "The String Formatters of Manor Farm" who goes into a lot of detail of the performance of string formatters like sscanf and lexical_cast and what kind of things were making them run slowly or quickly. This is kind of analogous, probably to the kind of things that would affect performance between C style IO and C++ style. The main difference with the formatters tended to be the type safety and the number of memory allocations.

link|flag
+1 thanks for that reference - i was trying to remember where i had read a formal comparison of the techniques, until i saw your reference :) – Faisal Vali Jun 25 at 4:33
vote up 9 vote down

Wow, talk about premature optimization. If not a ridiculous optimization. I/O is going to bottleneck your program well before cin >> x maxes out your quadcore CPU.

OK, snideness aside: No, it is not good practice to swap out <iostream> for <cstdio>. When in C++, use the C++ libraries. Do not use scanf, do not call malloc, do not pass go, do not collect $200.

link|flag
4  
Please give me the C function for collecting $200, I could really use that right now. – dreamlax Jun 25 at 4:05
if (!computer_is_on()) collect_200(); – 1800 INFORMATION Jun 25 at 4:09
2  
bool $200 = true; – Johannes Schaub - litb Jun 25 at 4:11
2  
@John: the site he is talking about is a competitive programming site. The goal is micro-optimization. – Evan Teran Jun 25 at 4:13
vote up 2 vote down

Even if scanf were faster than cin, it wouldn't matter. The vast majority of the time, you will be reading from the hard drive or the keyboard. Getting the raw data into your application takes orders of magnitude more time than it takes scanf or cin to process it.

link|flag
What about IPC through pipes? Do you think there might be a noticeable performance hit there? – dreamlax Jun 25 at 4:10
Even with IPC through pipes, much more time is spent going in and out of the kernel than just parsing it with scanf/cin. – Jay Conrod Jun 25 at 4:34
3  
I did tests in this area, and certainly cout & cin suck performance. While for user input it's negligible, it's certainly not so for things where performance matters. Other c++ framework exist that are faster, though. – Johannes Schaub - litb Jun 25 at 4:35
vote up 2 vote down

If you care about both performance and string formatting, do take a look at Matthew Wilson's FastFormat library.

link|flag
Agree completely. But you need to be aware that FastFormat is only for output. It has no input/read facilities. (Not yet, anyway) – dcw Jun 26 at 8:19
vote up 2 vote down

I just spent an evening working on a problem on UVa Online (Factovisors, a very interesting problem, check it out):

http://uva.onlinejudge.org/index.php?option=com%5Fonlinejudge&Itemid=8&category=35&page=show%5Fproblem&problem=1080

I was getting TLE (time limit exceeded) on my submissions. On these problem solving online judge sites, you have about a 2-3 second time limit to handle potentially thousands of test cases used to evaluate your solution. For computationally intensive problems like this one, every microsecond counts.

I was using the suggested algorithm (read about in the discussion forums for the site), but was still getting TLEs.

I changed just "cin >> n >> m" to "scanf( "%d %d", &n, &m )" and the few tiny "couts" to "printfs", and my TLE turned into "Accepted"!

So, yes, it can make a big difference, especially when time limits are short.

link|flag
vote up 1 vote down

The problem is that cin has a lot of overhead involved because it gives you an abstraction layer above scanf() calls. You shouldn't use scanf() over cin if you are writing C++ software because that is want cin is for. If you want performance, you probably wouldn't be writing I/O in C++ anyway.

link|flag
vote up 0 vote down

There are stdio implementations (libio) which implements FILE* as a C++ streambuf, and fprintf as a runtime format parser. IOstreams don't need runtime format parsing, that's all done at compile time. So, with the backends shared, it's reasonable to expect that iostreams is faster at runtime.

link|flag
I don't think so. I think GNU's libc is pure C and assembly. – Chris Lutz Jun 25 at 8:20
You're right. It's libio I was thinking of. – MSalters Jun 26 at 9:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.