搜索
首页web前端html教程Codeforces Round #272 (Div. 2) 题解_html/css_WEB-ITnose


Codeforces Round #272 (Div. 2)

A. Dreamoon and Stairs

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Dreamoon wants to climb up a stair of n steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer m.

What is the minimal number of moves making him climb to the top of the stairs that satisfies his condition?

Input

The single line contains two space separated integers n, m (0?

Output

Print a single integer ? the minimal number of moves being a multiple of m. If there is no way he can climb satisfying condition print ?-?1 instead.

Sample test(s)

input

10 2

output

input

3 5

output

-1

Note

For the first sample, Dreamoon could climb in 6 moves with following sequence of steps: {2, 2, 2, 2, 1, 1}.

For the second sample, there are only three valid sequence of steps {2, 1}, {1, 2}, {1, 1, 1} with 2, 2, and 3 steps respectively. All these numbers are not multiples of 5.


简单题:暴力枚举

import java.util.*;public class CF467A{    public static void main(String[] args){        Scanner in = new Scanner(System.in);        int n=in.nextInt(),m=in.nextInt();        int low=n/2;        int high=n;        if(n%2==1) low++;                int ans=-1;        for(int i=low;i       <br>       <br>       <p></p>                      <p class="sycode">   </p><p class="sycode">    </p><p class="sycode">     </p><p class="sycode">      </p><p class="sycode">       </p><p class="sycode">        B. Dreamoon and WiFi       </p>       <p class="sycode">        </p><p class="sycode">         time limit per test        </p> 1 second              <p class="sycode">        </p><p class="sycode">         memory limit per test        </p> 256 megabytes              <p class="sycode">        </p><p class="sycode">         input        </p> standard input              <p class="sycode">        </p><p class="sycode">         output        </p> standard output                   <p class="sycode">       </p><p> Dreamoon is standing at the position 0 on a number line. Drazil is sending a list of commands through Wi-Fi to Dreamoon's smartphone and Dreamoon follows them.</p>       <p> Each command is one of the following two types:</p>       <ol>        <li> Go 1 unit towards the positive direction, denoted as '+'</li>        <li> Go 1 unit towards the negative direction, denoted as '-'</li>       </ol>       <p> But the Wi-Fi condition is so poor that Dreamoon's smartphone reports some of the commands can't be recognized and Dreamoon knows that some of them might even be wrong though successfully recognized. Dreamoon decides to follow every recognized command and toss a fair coin to decide those unrecognized ones (that means, he moves to the 1 unit to the negative or positive direction with the same probability 0.5).</p>       <p> You are given an original list of commands sent by Drazil and list received by Dreamoon. What is the probability that Dreamoon ends in the position originally supposed to be final by Drazil's commands?</p>            <p class="sycode">       </p><p class="sycode">        Input       </p>       <p> The first line contains a string s1 ? the commands Drazil sends to Dreamoon, this string consists of only the characters in the set {'+', '-'}.</p>       <p> The second line contains a string s2 ? the commands Dreamoon's smartphone recognizes, this string consists of only the characters in the set {'+','-', '?'}. '?' denotes an unrecognized command.</p>       <p> Lengths of two strings are equal and do not exceed 10.</p>            <p class="sycode">       </p><p class="sycode">        Output       </p>       <p> Output a single real number corresponding to the probability. The answer will be considered correct if its relative or absolute error doesn't exceed 10?-?9.</p>            <p class="sycode">       </p><p class="sycode">        Sample test(s)       </p>       <p class="sycode">        </p><p class="sycode">         </p><p class="sycode">          input         </p>         <pre style="代码" class="precsshei">++-+-+-+-+

output

1.000000000000

input

+-+-+-??

output

0.500000000000

input

+++??-

output

0.000000000000

Note

For the first sample, both s1 and s2 will lead Dreamoon to finish at the same position ?+?1.

For the second sample, s1 will lead Dreamoon to finish at position 0, while there are four possibilites for s2: {"+-++", "+-+-", "+--+", "+---"} with ending position {+2, 0, 0, -2} respectively. So there are 2 correct cases out of 4, so the probability of finishing at the correct position is 0.5.

For the third sample, s2 could only lead us to finish at positions {+1, -1, -3}, so the probability to finish at the correct position ?+?3 is 0.

简单题:

/** * Created by ckboss on 14-10-16. */import java.util.*;public class CF476B {    static double Calu(int deta,int c){        double ret=1;        for(int i=c;i>=c-deta+1;i--){            ret=ret*i;        }        for(int i=1;i       <br>       <br>       <p></p>                      <p class="sycode">   </p><p class="sycode">    </p><p class="sycode">     </p><p class="sycode">      </p><p class="sycode">       </p><p class="sycode">        C. Dreamoon and Sums       </p>       <p class="sycode">        </p><p class="sycode">         time limit per test        </p> 1.5 seconds              <p class="sycode">        </p><p class="sycode">         memory limit per test        </p> 256 megabytes              <p class="sycode">        </p><p class="sycode">         input        </p> standard input              <p class="sycode">        </p><p class="sycode">         output        </p> standard output                   <p class="sycode">       </p><p> Dreamoon loves summing up something for no reason. One day he obtains two integers a and b occasionally. He wants to calculate the sum of all niceintegers. Positive integer x is called nice if  and , where k is some integer number in range [1,?a].</p>       <p> By  we denote the quotient of integer division of x and y. By  we denote the remainder of integer division of x and y. You can read more about these operations here: http://goo.gl/AcsXhT.</p>       <p> The answer may be large, so please print its remainder modulo 1?000?000?007 (109?+?7). Can you compute it faster than Dreamoon?</p>            <p class="sycode">       </p><p class="sycode">        Input       </p>       <p> The single line of the input contains two integers a, b (1?≤?a,?b?≤?107).</p>            <p class="sycode">       </p><p class="sycode">        Output       </p>       <p> Print a single integer representing the answer modulo 1?000?000?007 (109?+?7).</p>            <p class="sycode">       </p><p class="sycode">        Sample test(s)       </p>       <p class="sycode">        </p><p class="sycode">         </p><p class="sycode">          input         </p>         <pre style="代码" class="precsshei">1 1

output

input

2 2

output

Note

For the first sample, there are no nice integers because  is always zero.

For the second sample, the set of nice integers is {3,?5}.

化简一下式子。。。。

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;typedef long long int LL;const LL MOD=1000000007LL;LL a,b;LL bl(){    LL ret=0;    LL bbb=(b*(b-1)/2)%MOD;    for(int i=1;i>a>>b;    cout       <br>       <br>       <p></p>                      <p class="sycode">   </p>
<p class="sycode">    </p>
<p class="sycode">     </p>
<p class="sycode">      </p>
<p class="sycode">       </p>
<p class="sycode">        D. Dreamoon and Sets       </p>       <p class="sycode">        </p>
<p class="sycode">         time limit per test        </p> 1 second              <p class="sycode">        </p>
<p class="sycode">         memory limit per test        </p> 256 megabytes              <p class="sycode">        </p>
<p class="sycode">         input        </p> standard input              <p class="sycode">        </p>
<p class="sycode">         output        </p> standard output                   <p class="sycode">       </p>
<p> Dreamoon likes to play with sets, integers and .  is defined as the largest positive integer that divides both a and b.</p>       <p> Let S be a set of exactly four distinct integers greater than 0. Define S to be of rank k if and only if for all pairs of distinct elements si, sj from S, .</p>       <p> Given k and n, Dreamoon wants to make up n sets of rank k using integers from 1 to m such that no integer is used in two different sets (of course you can leave some integers without use). Calculate the minimum m that makes it possible and print one possible solution.</p>            <p class="sycode">       </p>
<p class="sycode">        Input       </p>       <p> The single line of the input contains two space separated integers n, k (1?≤?n?≤?10?000,?1?≤?k?≤?100).</p>            <p class="sycode">       </p>
<p class="sycode">        Output       </p>       <p> On the first line print a single integer ? the minimal possible m.</p>       <p> On each of the next n lines print four space separated integers representing the i-th set.</p>       <p> Neither the order of the sets nor the order of integers within a set is important. If there are multiple possible solutions with minimal m, print any one of them.</p>            <p class="sycode">       </p>
<p class="sycode">        Sample test(s)       </p>       <p class="sycode">        </p>
<p class="sycode">         </p>
<p class="sycode">          input         </p>         <pre style="代码" class="precsshei">1 1

output

51 2 3 5

input

2 2

output

222 4 6 2214 18 10 16

Note

For the first example it's easy to see that set {1,?2,?3,?4} isn't a valid set of rank 1 since .

规律,6×i+1 , 6×i+2  , 6×i+3 , 6×i+5 

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;int n,k;int main(){    scanf("%d%d",&n,&k);    printf("%d\n",(6*(n-1)+5)*k);    for(int i=0;i<n printf return>       <br>       <br>       <p></p>                      <p class="sycode">   </p>
<p class="sycode">    </p>
<p class="sycode">     </p>
<p class="sycode">      </p>
<p class="sycode">       </p>
<p class="sycode">        E. Dreamoon and Strings       </p>       <p class="sycode">        </p>
<p class="sycode">         time limit per test        </p> 1 second              <p class="sycode">        </p>
<p class="sycode">         memory limit per test        </p> 256 megabytes              <p class="sycode">        </p>
<p class="sycode">         input        </p> standard input              <p class="sycode">        </p>
<p class="sycode">         output        </p> standard output                   <p class="sycode">       </p>
<p> Dreamoon has a string s and a pattern string p. He first removes exactly x characters from s obtaining string s' as a result. Then he calculates  that is defined as the maximal number of non-overlapping substrings equal to p that can be found in s'. He wants to make this number as big as possible.</p>       <p> More formally, let's define  as maximum value of  over all s' that can be obtained by removing exactly x characters from s. Dreamoon wants to know  for all x from 0 to |s| where |s| denotes the length of string s.</p>            <p class="sycode">       </p>
<p class="sycode">        Input       </p>       <p> The first line of the input contains the string s (1?≤?|s|?≤?2?000).</p>       <p> The second line of the input contains the string p (1?≤?|p|?≤?500).</p>       <p> Both strings will only consist of lower case English letters.</p>            <p class="sycode">       </p>
<p class="sycode">        Output       </p>       <p> Print |s|?+?1 space-separated integers in a single line representing the  for all x from 0 to |s|.</p>            <p class="sycode">       </p>
<p class="sycode">        Sample test(s)       </p>       <p class="sycode">        </p>
<p class="sycode">         </p>
<p class="sycode">          input         </p>         <pre style="代码" class="precsshei">aaaaaaa

output

2 2 1 1 0 0

input

axbaxxbab

output

0 1 1 2 1 1 0 0

Note

For the first sample, the corresponding optimal values of s' after removal 0 through |s|?=?5 characters from s are {"aaaaa", "aaaa", "aaa", "aa","a", ""}.

For the second sample, possible corresponding optimal values of s' are {"axbaxxb", "abaxxb", "axbab", "abab", "aba", "ab", "a", ""}.


DP

DP[i][j]再第一个串中前i个字符里删j个能得到的最大匹配数

cal(i)从第一个串第i个字符往前删至少删几个可以和第二个串匹配


dp[i][j]=max( dp[i-1][j],dp[i-cal(i)-len2][j-cal(i)] );


#include <iostream>#include <cstring>#include <cstdio>#include <algorithm>using namespace std;const int INF=0x3f3f3f3f;char s[2200],p[550];int dp[2200][2200],len1,len2;int cal(int x){    if(x<len2 return inf int ans="0,p1=len2,q=x;" while if p1-- else main scanf len1="strlen(s+1),len2=strlen(p+1);" for i="0;i<=len1;i++)" j="0;j<=len1;j++)" dp x="cal(i);">=0) dp[i][j]=max(dp[i][j],dp[i-x-len2][j-x]+1);        }    }    for(int i=0;i  <br>  <br>  <p></p>  <p><br> </p>  <p><br> </p> </len2></algorithm></cstdio></cstring></iostream>
声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
公众号网页更新缓存难题:如何避免版本更新后旧缓存影响用户体验?公众号网页更新缓存难题:如何避免版本更新后旧缓存影响用户体验?Mar 04, 2025 pm 12:32 PM

公众号网页更新缓存,这玩意儿,说简单也简单,说复杂也够你喝一壶的。你辛辛苦苦更新了公众号文章,结果用户打开还是老版本,这滋味,谁受得了?这篇文章,咱就来扒一扒这背后的弯弯绕绕,以及如何优雅地解决这个问题。读完之后,你就能轻松应对各种缓存难题,让你的用户始终体验到最新鲜的内容。先说点基础的。网页缓存,说白了就是浏览器或者服务器为了提高访问速度,把一些静态资源(比如图片、CSS、JS)或者页面内容存储起来。下次访问时,直接从缓存里取,不用再重新下载,速度自然快。但这玩意儿,也是个双刃剑。新版本上线,

如何使用HTML5表单验证属性来验证用户输入?如何使用HTML5表单验证属性来验证用户输入?Mar 17, 2025 pm 12:27 PM

本文讨论了使用HTML5表单验证属性,例如必需的,图案,最小,最大和长度限制,以直接在浏览器中验证用户输入。

如何高效地在网页中为PNG图片添加描边效果?如何高效地在网页中为PNG图片添加描边效果?Mar 04, 2025 pm 02:39 PM

本文展示了使用CSS为网页中添加有效的PNG边框。 它认为,与JavaScript或库相比,CSS提供了出色的性能,详细介绍了如何调整边界宽度,样式和颜色以获得微妙或突出的效果

HTML5中跨浏览器兼容性的最佳实践是什么?HTML5中跨浏览器兼容性的最佳实践是什么?Mar 17, 2025 pm 12:20 PM

文章讨论了确保HTML5跨浏览器兼容性的最佳实践,重点是特征检测,进行性增强和测试方法。

&lt; datalist&gt;的目的是什么。 元素?&lt; datalist&gt;的目的是什么。 元素?Mar 21, 2025 pm 12:33 PM

本文讨论了html&lt; datalist&gt;元素,通过提供自动完整建议,改善用户体验并减少错误来增强表格。Character计数:159

&gt; gt;的目的是什么 元素?&gt; gt;的目的是什么 元素?Mar 21, 2025 pm 12:34 PM

本文讨论了HTML&lt; Progress&gt;元素,其目的,样式和与&lt; meter&gt;元素。主要重点是使用&lt; progress&gt;为了完成任务和LT;仪表&gt;对于stati

我如何使用html5&lt; time&gt; 元素以语义表示日期和时间?我如何使用html5&lt; time&gt; 元素以语义表示日期和时间?Mar 12, 2025 pm 04:05 PM

本文解释了HTML5&lt; time&gt;语义日期/时间表示的元素。 它强调了DateTime属性对机器可读性(ISO 8601格式)的重要性,并在人类可读文本旁边,增强Accessibilit

&lt; meter&gt;的目的是什么。 元素?&lt; meter&gt;的目的是什么。 元素?Mar 21, 2025 pm 12:35 PM

本文讨论了HTML&lt; meter&gt;元素,用于在一个范围内显示标量或分数值及其在Web开发中的常见应用。它区分了&lt; meter&gt;从&lt; progress&gt;和前

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前By尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
3 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具