摘要: A.统计每个字母数量,比较是否超过k。 #include<bits/stdc++.h> using namespace std; int n,k,cnt[26] = {0}; string s; int main() { ios::sync_with_stdio(0); cin >> n >> k 阅读全文
posted @ 2017-08-19 09:12 zzzzzzzzhu 阅读(192) 评论(0) 推荐(0) 编辑