-
Notifications
You must be signed in to change notification settings - Fork 0
/
speedUp.cpp
21 lines (19 loc) · 973 Bytes
/
speedUp.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// incorporate this statement will speeds up c++ program
// for more info visit link - https://stackoverflow.com/questions/48367983/why-does-the-following-snippet-speed-up-the-code
// https://www.geeksforgeeks.org/fast-io-for-competitive-programming/
// https://www.geeksforgeeks.org/speed-up-naive-algorithms-in-competitive-coding-in-c-cpp/
// https://www.geeksforgeeks.org/basic-code-optimizations-in-c/
// https://www.geeksforgeeks.org/writing-code-faster-during-competitive-programming-in-c/
// https://www.geeksforgeeks.org/writing-code-faster-in-c-stl/
// https://www.oreilly.com/library/view/optimized-c/9781491922057/ch01.html
// https://www.quora.com/What-are-some-general-tips-for-speeding-up-a-C++-program
//http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html
//https://www.thegeekstuff.com/2015/01/c-cpp-code-optimization/
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
return 0;
}