题解——Codeforces Round #508 (Div. 2) T1 (模拟)
Posted dreagonm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解——Codeforces Round #508 (Div. 2) T1 (模拟)相关的知识,希望对你有一定的参考价值。
依照题意暴力模拟即可A掉
#include <cstdio> #include <algorithm> #include <cstring> #include <set> using namespace std; char s[100100]; int n,k,barrel[30]; int main(){ scanf("%d %d",&n,&k); scanf("%s",s+1); for(int i=1;i<=n;i++) barrel[s[i]-‘A‘+1]++; int ans=0x3f3f3f3f; for(int i=1;i<=k;i++) ans=min(ans,barrel[i]); printf("%d ",ans*k); return 0; }
以上是关于题解——Codeforces Round #508 (Div. 2) T1 (模拟)的主要内容,如果未能解决你的问题,请参考以下文章
题解——Codeforces Round #508 (Div. 2) T2 (构造)
Codeforces Round #508 (Div. 2)
Codeforces Round #815 (Div. 2) 题解
Codeforces Round #805 (Div. 3) 题解