shashiHIGS's blog

By shashiHIGS, 11 years ago, In English

Can anyone help me to improve the code.. Here is my solution:3406918.

Full text and comments »

  • Vote: I like it
  • +2
  • Vote: I do not like it

By shashiHIGS, 12 years ago, In English

some somebody explain it.thanks in advance..

Full text and comments »

  • Vote: I like it
  • -1
  • Vote: I do not like it

By shashiHIGS, 12 years ago, In English

I know the logic is true for small numbers,but how can i prove the correctness of the algorithm for all n; here is the code:2296715

Full text and comments »

  • Vote: I like it
  • -3
  • Vote: I do not like it

By shashiHIGS, 12 years ago, In English

here is my solution,plz help 2269000

Full text and comments »

  • Vote: I like it
  • -14
  • Vote: I do not like it

By shashiHIGS, 12 years ago, In English
Your code here...

include

using namespace std; int main() { long long n,u=1,d=2,c=1000000007; cin>>n; while(n) { if(n%2) u=(u*d)%c; d=(d*d)%c; n/=2; } cout<<((u*u+u)/2)%c; return 0; }

Full text and comments »

  • Vote: I like it
  • -16
  • Vote: I do not like it

By shashiHIGS, 12 years ago, In English

i think the answer is (4^n-(1+2.....(2^n-1)))%(10^9+7);but upper bound of n is 10^18; so how to find the answer?

Full text and comments »

  • Vote: I like it
  • -1
  • Vote: I do not like it

By shashiHIGS, 12 years ago, In English

need tutorial on matrix exponential algorithm

Full text and comments »

  • Vote: I like it
  • -15
  • Vote: I do not like it