Hello Everyone,
In my template I use macros like #define ll long long int and many others.
But I found on web that it takes more memory and it is wise to use typedef long long int ll or using ll=long long int
I am confused. Which will be efficient for time as well as memory. Please help me. Thanks in advance.
Here somebody wrote a useful comment.
They're both wrong, use #define int long long
Why?
Not a lot of people outside China know this, but there is actually a very simple trick you can use to speed up your code. To use it just simply write
And now all your long longs are booleans, and you can put them in a bitset. Good luck!
pure evil.