URAL 1928 1962 1939 1994

前端之家收集整理的这篇文章主要介绍了URAL 1928 1962 1939 1994前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

XGG Blog

  • URAL1928 Another Ecology Problem
  • URAL1962 In Chinese Restaurant
  • URAL1939 First Seal
  • URAL1994 The Emperor’s plan

URAL1928 Another Ecology Problem

Let dp[n][centra][0] be the maximum money the centra can get when there is n billions zollars in the budget and is the current centra’s turn to request for money,and let dp[n][centra][1] be the minimum money the contender can get when money is maximized for the current centra. For in,dp[n][centra][0]=dp[n-i][1-centra][1] + i,dp[n][centra][1]=dp[n⑴][1-centra][0],and when k>n,dp[n][centra][0]=m,dp[n][centra][1]=0. Find the maximum dp[n][centra][0] and the minimum dp[n][centra][1] to solve this problem.

Accepted Code

URAL1962 In Chinese Restaurant

The people form chains and circle. The circle (number of nodes is greater than 2) could only appear when there is only one set and n=m,and the answer is 2 if n>2. Each chain should contain at most 1 inner cycle which indicates two people want to sit with each other. For every chain it could be reversed,and it could be placed anywhere except the chain contains people 1. Denote the number of chains by k,the permutation of the chains is (k?1)!,denote the number of chains whose node number is larger than 1 as l,the number of available arrangements is (k?1)!?2l.

Accepted Code

URAL1939 First Seal

Let t=H?hx,S_1=v?t?l,S_2=v22a@H_638_403@S\_2=frac{v^2}{2a},if S1<S2 then the vehicle will fall to pieces anyway.

Accepted Code

URAL1994 The Emperor’s plan

Let dp[x][y] be the expected number of senators before night,x is the number of senators and y is the number of spies. In each night,y senators will be removed thus x -= y is executed. In each day,enumerate 0ix+y and 0jmin(i,y) where i is the number of people to be excluded,j is the number of spies in them. The expectation dp[x][y] will be @H_403_609@max_i=0x+y_j=0min(i,y)dp[x?(i?j)][y@H_301_723@?j]?C_xi?j?C_yjC_x+yi.

Accepted Code

猜你在找的PHP相关文章