Codeforces 844A
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 844A相关的知识,希望对你有一定的参考价值。
#include<cstdio> #include<cstring> bool cnt[30]; int main() { char t; int ans=0; //重复字符数 int num=0; //字符长度 memset(cnt,false,sizeof(cnt)); while(1) { t=getchar(); if(t==‘\n‘) break; else if(cnt[(int)(t-‘a‘)]) ans++; else cnt[(int)(t-‘a‘)]=true; num++; } int k; scanf("%d",&k); if(num<k) printf("impossible\n"); else if((num-ans)>k) printf("0\n"); else printf("%d",k-num+ans); return 0; }
以上是关于Codeforces 844A的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces 86C Genetic engineering(AC自动机+DP)
CodeForces 1005D Polycarp and Div 3(思维贪心dp)
(Incomplete) Codeforces 394 (Div 2 only)