Codeforces Round #295 (Div. 2)

A. Pangram

题意:给出长度为n的字符串,判断26个字母(比如a,A都算作a出现了)是否都在该串中出现了

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include <cmath>
 5 #include<algorithm>
 6 using namespace std;
 7
 8 typedef long long LL;
 9
10
11
12 int main()
13 {
14     int i,j,n;
15     char s[105];char a[52];
16     strcpy(a,"aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ");
17     scanf("%d",&n);
18     cin>>s;
19     int flag=1;
20     int ans=0;
21     if(n<26) flag=0;
22     else
23     {
24         for(i=0;i<52;i=i+2)
25       {
26         for(j=0;j<n;j++)
27         {
28             if(a[i]==s[j]||a[i+1]==s[j])
29             {
30                 ans++;
31                 break;
32             }
33         }
34      }
35      if(ans<26) flag=0;
36     }
37
38     if(flag) printf("YES\n");
39     else printf("NO\n");
40 }

B. Two Buttons

题意:给出n,k,n可以作减1,乘2的操作,问至少通过多少次操作得到k

第一反应是贪心,后来在提示(不--是明示下(>﹏<))知道是BFS,和catch that cow一样,删掉一句就可以了

后来又用贪心写了,分别挂在第7个数据--第九个数据上--

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<queue>
 6 #define maxn 10005
 7 using namespace std;
 8 queue<int> q;
 9 int visit[maxn],step[maxn],n,k;
10
11 int bfs(int n,int k)
12 {
13     int head,next,i;
14     q.push(n);
15     visit[n]=1;
16     step[n]=0;
17     while(!q.empty())
18     {
19         head=q.front();
20         q.pop();
21         for(i=1;i<=3;i++)
22         {
23             if(i==1) next=head-1;
24             else next=2*head;
25             if(next<=10005&&next>0)
26             {
27                 if(!visit[next])//????
28                 {
29                 q.push(next);
30                 visit[next]=1;
31                 step[next]=step[head]+1;
32                 }
33             }
34             if(next==k) return step[next];
35         }
36     }
37 }
38
39 int main()
40 {
41     scanf("%d %d",&n,&k);
42     if(n>=k) printf("%d\n",n-k);
43     else
44     printf("%d\n",bfs(n,k));
45 }

C. DNA Alignment

题意:给出ACGT组成的字符串s,求满足使得p(s,t)最多的字符串有多少个

因为对于给出的字符串s,t中的每个字符都要匹配n次,

假设t[i]为现在去匹配的一个字符,需要匹配n次,

t[i]对p(s,t)的贡献即为t[i]在s这个串中出现的次数(因为对于题目中所给的p(s,t)的定义,t[i]每个位置都可以去匹配,所以s中有多少个t[i],t[i]的贡献就为多少)

这样就可以求出使得p(s,t)最大的条件,即为找出s串中出现次数最多的字母,如果这个次数对应有num个字母,那么总的就为num^n(因为有n个位置,每个位置有num个选择)

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include <cmath>
 5 #include<algorithm>
 6 using namespace std;
 7
 8 typedef long long LL;
 9 const int mod=1e9+7;
10 char s[100005];
11
12 LL quick_mod(LL a,LL b)
13 {
14     LL ans=1;
15     while(b)
16     {
17         if(b&1) ans=ans*a%mod;
18         b>>=1;
19         a=a*a%mod;
20     }
21     return ans;
22 }
23
24 int main()
25 {
26     int n,i,j,k,maxn=-1,num=0;
27     int cnt[55];
28     

29     scanf("%d",&n);
30     cin>>s;
31     memset(cnt,0,sizeof(cnt));
32     for(i=0;i<n;i++) //计算A C G T分别出现的次数
33     {
34         cnt[s[i]-‘A‘]++;
35     }
36
37     for(i=0;i<20;i++)
38     maxn=max(maxn,cnt[i]);  //找出出现次数最多的次数
39
40     for(i=0;i<20;i++)
41     {
42         if(cnt[i]==maxn) num++; //找出出现次数最多的对应有几个字母
43     }
44     printf("%I64d\n",quick_mod(num,n));
45     return 0;
46 }

哎----理解了的话= = 当时一直往排列组合那边想,觉得是有公式的-----5555555555

加油啊 go--go--go

时间: 2024-10-14 00:17:35

Codeforces Round #295 (Div. 2)的相关文章

Codeforces Round #295 (Div. 1) C. Pluses everywhere (组合数学+乘法逆元)

这题可以这样想: 对于当前第i位来说,该位若在个位上出现,那么第i位和第i+1位中间肯定有一个"+",剩下的k-1个"+"分布在剩下的n-2个空隙中,所以出现的总次数是C(n-2,k).同理,在十位上出现的总次数是C(n-3,k).于是每个数字的贡献值就可以求出来了,累加即可. 所以大体思路是遍历所有可能出现的位数,从个位开始,分成两部分计算,一部分用前缀和计算出前面所有的在该位上的贡献和,另一部分算出当前位置在该位上的贡献值. 然后对于求组合数,可以先将阶乘预处理

Codeforces Round #295 (Div. 2) A+B+C

A题:找出字符串中是否出现了26个英文字母,不区分大小写 #include <cstdio> #include <cstring> #include <algorithm> using namespace std ; char str[200] ; int a[30] , b[30] ; int main() { int n , i ; scanf("%d", &n) ; scanf("%s", str) ; memset

C. DNA Alignment 数学公式推导 Codeforces Round #295 (Div. 2)

C. DNA Alignment time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Vasya became interested in bioinformatics. He's going to write an article about similar cyclic DNA sequences, so he invente

【记忆化搜索】Codeforces Round #295 (Div. 2) B - Two Buttons

题意:给你一个数字n,有两种操作:减1或乘2,问最多经过几次操作能变成m: 随后发篇随笔普及下memset函数的初始化问题.自己也是涨了好多姿势. 代码 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cstdlib> 5 #define INF 0x7fffffff; 6 using namespace std; 7 int DP[20100], vis[2010

Codeforces Round #295 (Div. 1) B. Cubes (STL+类拓扑)

最近课业繁重,这题写了两天..昨晚睡觉的时候才突然想到了最后一点的解决方法. 不知道该不该叫做拓扑..感觉还是挺像的..就把标题称之为类拓扑了..这题的方法是用map来标记状态是否存在,然后用类似拓扑的方法不断的找拿走后依然稳定的方块,我用了两个优先队列来维护,分别取最大和最小.然后就是模拟这个过程取方块了. 代码如下: #include <iostream> #include <string.h> #include <math.h> #include <queu

Codeforces Round #295 (Div. 1)

A 简单题 B 有m个方块 每个方块有一个值 并且是堆起来稳定的 一个方块可以拿掉当且仅当剩下的还是稳定的 双方轮流拿 从左到右放组成一个m进制的数 #include <cstdio> #include <cstring> #include <queue> #include <set> #include <map> #include <algorithm> using namespace std; const __int64 mod

Codeforces Round #295 (Div. 2)——A——Pangram

A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. You are given a string c

Codeforces Round #295 (Div. 2)——B——Two Buttons

Vasya has found a strange device. On the front panel of a device there are: a red button, a blue button and a display showing some positive integer. After clicking the red button, device multiplies the displayed number by two. After clicking the blue

codeforces 521a//DNA Alignment// Codeforces Round #295(Div. 1)

题意:如题定义的函数,取最大值的数量有多少? 结论只猜对了一半. 首先,如果只有一个元素结果肯定是1.否则.s串中元素数量分别记为a,t,c,g.设另一个串t中数量为a',t',c',g'.那么,固定s串,移动t串时,增加的量为p=a*a'+t*t'+c*c'+g*g'.注意a'+t'+c'+g'是等于串长,那么减少a,t,c,g中最少的对应的那个a',t',c',g',增加到最大的那个上,p值是上升的.而且如果a==t那么a'和t'的数量互换是不影响p值的.因此结论是这种情况下,t串可随意 放