加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

URAL 1928 1962 1939 1994

发布时间:2020-12-13 20:06:16 所属栏目:PHP教程 来源:网络整理
导读: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 billion

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,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 max_i=0x+y_j=0min(i,y)dp[x?(i?j)][y?j]?C_xi?j?C_yjC_x+yi.

Accepted Code

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读