Black_hat123's blog

By Black_hat123, history, 4 years ago, In English

Can somebody please tell how to solve this problem using SQRT decomposition method. I did'nt found any correct way to implement?

Thanks

Full text and comments »

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

By Black_hat123, history, 4 years ago, In English

Can anybody please tell how to solve This problem..

Full text and comments »

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

By Black_hat123, history, 5 years ago, In English

Can someone please help in This problem.

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

By Black_hat123, history, 5 years ago, In English

Can someone please tell how to solve This problem

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

By Black_hat123, history, 5 years ago, In English

Can anyone please tell how to solve This Problem

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

By Black_hat123, history, 5 years ago, In English

Can Someone please tell how to solve This problem..

Thanks.:)

Full text and comments »

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

By Black_hat123, history, 5 years ago, In English

Hello, Can anyone please tell how to solve below problem — There exists a special graph which has directed M edges and N nodes and graph contains no cycles. Count the number of ways to reach different nodes from S. A way is called different from others if the destination node or used edges differ. As the ways can be large, print the ways modulo 1000000007. Include source node as destination also. 1 <= S, N <= 100005 (S=source vertex) (N=number of nodes) 1 <= M <= 200005 (number of edges) 1 <= x , y <= N (edge from x to y)

My approach is to use dp on tree 1)Make a reverse graph (all edges are in reverse order) 2)call DP recursive function for all nodes who are not yet visited 3)Inside Dp recursive function call for number of ways to reach to parent of current node from Source(S)(Using the reverse graph) and add all those ways to dp[current_node] 4)return dp[current node] But this approach is giving TLE in some testcases. Please suggest some ideas... Problem link

Thanks :)

Full text and comments »

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

By Black_hat123, history, 5 years ago, In English

Hello, can any one please tell how to solve This problem

Full text and comments »

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

By Black_hat123, history, 5 years ago, In English

Hello, can any one please tell how to solve This question

Full text and comments »

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

By Black_hat123, history, 5 years ago, In English

Hello, can any one please tell how to solve this question

Full text and comments »

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