Search found 5 matches

by Hao Hu
Thu Jan 25, 2007 11:30 am
Forum: Volume 2 (200-299)
Topic: 210 - Concurrency Simulator
Replies: 16
Views: 8538

210 - Concurrency Simulator

Hi, I tried this problem today but got WA.

I thought I implemented the rules of concurrency simulation described well, and I've already searched this forum for help / tricky parts as well as test datas generated by others. But I still can't find my problem is. I think it works well.

So would you ...
by Hao Hu
Mon Jan 01, 2007 2:53 pm
Forum: Volume 111 (11100-11199)
Topic: 11149 - Power of Matrix
Replies: 42
Views: 25910

i didn't find anything wrong in the base case of solve(k)

Matrix solve(int k)
{
if(k==1) return m;
Matrix ret=solve(k/2);
Matrix pow=power(m,k/2);
Matrix tmp=add(ret,mul(pow,ret));
if(k%2==1)
{
Matrix tt=mul(pow,pow);
Matrix newpow=mul(tt,m);
Matrix ans=add(tmp,newpow);
return ans ...
by Hao Hu
Mon Jan 01, 2007 10:55 am
Forum: Volume 111 (11100-11199)
Topic: 11153 - Museums
Replies: 16
Views: 12433

Can you give me some further hint on this problem?
I first thought to use the dynamic programming method that is similar to that in the Hamilton Path which runs in O(2^n*n^2) time but then found one can past a node several times...

my searching + optimization got TLE....

wondering what is the ...
by Hao Hu
Mon Jan 01, 2007 8:57 am
Forum: Volume 111 (11100-11199)
Topic: 11149 - Power of Matrix
Replies: 42
Views: 25910

Problem solved...so careless in the base case of solve(k).
by Hao Hu
Mon Jan 01, 2007 8:30 am
Forum: Volume 111 (11100-11199)
Topic: 11149 - Power of Matrix
Replies: 42
Views: 25910

11149 Power of Matrix WA

code removed because of getting accepted

Go to advanced search