摘要: https://code.google.com/codejam/contest/6304486/dashboard#s=p1 这是一道简单的dp,dp[i][j]代表A的voter为i,B的voter为j时的成功方案数,转移方程是dp[i][j]=dp[i-1][j]+dp[i][j-1],这里一定 阅读全文
posted @ 2017-03-04 11:08 shulin15 阅读(487) 评论(0) 推荐(0)