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 steps 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.
题意:给两个数n,m,
现在要求爬楼梯,一次可以爬
一个或两个阶梯,要求爬完n个阶梯,
求爬的次数为m的倍数时,最少次数是多少,
若不存在答案输出-1。
做法:很明显尽量爬两步。
代码:
#include<iostream>#include<map>#include<string>#include<cstring>#include<cstdio>#include<cstdlib>#include<cmath>#include<queue>#include<vector>#include<algorithm>using namespace std;int main(){ int n,m,x,y; cin>>n>>m; x=n/2+n%2; y=n/2; while(y>-1) { if(x%m==0) { cout <br> <p></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 class="brush:php;toolbar:false">++-+-+-+-+
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.
题意:给两个长度不超过10的相同长度的串,
代码:
#include<iostream>#include<map>#include<string>#include<cstring>#include<cstdio>#include<cstdlib>#include<cmath>#include<queue>#include<vector>#include<algorithm>using namespace std;int s1,s2,s3;void dfs(int step,int val){ if(step==s2) { if(val==s1) s3++; return; } dfs(step+1,val+1); dfs(step+1,val-1);}int main(){ string a,b; int n,i; cin>>a>>b; n=a.length(); s1=0; for(i=0;i<n if s1 else s1-- s2="0;" for s3="0;" dfs printf> <br> <p></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 nice integers. 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 class="brush:php;toolbar:false">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}.
题意:给出两个数a,b,当
代码:
#include<iostream>#include<map>#include<string>#include<cstring>#include<cstdio>#include<cstdlib>#include<cmath>#include<queue>#include<vector>#include<algorithm>using namespace std;const long long mod=1000000007;int main(){ long long a,b,t1,t2,t3; cin>>a>>b; t1=(1+a)*a/2%mod; t1=(t1*b)%mod; t1=(t1+a)%mod; t2=b*(b-1)/2%mod; t3=(t1*t2)%mod; cout <br> <p></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 class="brush:php;toolbar:false">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 .
题意:代码:
#include<iostream>#include<map>#include<string>#include<cstring>#include<cstdio>#include<cstdlib>#include<cmath>#include<queue>#include<vector>#include<algorithm>using namespace std;int main(){ int n,k; cin>>n>>k; cout <br> <p></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 class="brush:php;toolbar:false">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", ""}.
题意:代码:
#include<iostream>#include<map>#include<string>#include<cstring>#include<cstdio>#include<cstdlib>#include<cmath>#include<queue>#include<vector>#include<algorithm>using namespace std;int a[2010],dp[2010][2010];int main(){ string s,p; int i,j,k,ns,np; cin>>s>>p; ns=s.length(); np=p.length(); for(i=0;i<ns j="0;k=i;" while if k a for dp>0) dp[i+a[i]][j+a[i]-np]=max(dp[i][j]+1,dp[i+a[i]][j+a[i]-np]); } i=ns; cout <br> <br> <p></p> </ns></algorithm></vector></queue></cmath></cstdlib></cstdio></cstring></string></map></iostream>