码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round 272(Div. 2)

时间:2019-03-31 13:50:39      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:mod   tar   line   you   class   删除   spl   com   ref   


layout: post
title: Codeforces Round 272(Div. 2)
author: "luowentaoaa"
catalog: true
tags:
mathjax: true
- codeforces
- DP


传送门

A - Dreamoon and Stairs (暴力枚举两步的数量)

B - Dreamoon and WiFi (dfs)

思路

因为长度只有十所以直接暴力dfs选择,复杂度\(2^{10}\)

C - Dreamoon and Sums (公式)

思路

\[ \frac{div(x,b)}{mod(x,b)}=k\\ \to div(x,b)=k \times mod(x,b)\\ \to x=k \times mod(x,b)\times b+mod(x,b) \\\to x= mod(x,b)(k\times b+1) \]

然后因为\(b,\)已知\(mod(x,b)\)\(0->b-1\)之间 \(k\)\(1->a\)之间

D - Dreamoon and Sets (找规律)

思路

发现需要满足条件需要最近的四个互质的数枚举发现1,2,3,5符合

下一组应该是7,8,9,11,

13,14,15,17

以此类推

E - Dreamoon and String (Dp)

思路

\(dp[i][j]表示前i个删除了j个的最优值\)

\(dp[i][j]=dp[i-1][j] 不删除\)

\(dp[i][j]=dp[i-1][j-1]删除了自己\)

\(dp[i][j]=dp[i-ned-lenb][j-ned]删除了一些\)

Codeforces Round 272(Div. 2)

标签:mod   tar   line   you   class   删除   spl   com   ref   

原文地址:https://www.cnblogs.com/luowentao/p/10630974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!