码迷,mamicode.com
首页 > 其他好文 > 详细

1069 微博转发抽奖 (20 分)

时间:2019-05-01 01:05:02      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:int   code   i++   std   div   cin   没有   end   ring   

#include <iostream>
#include <set>
#include <string>
using namespace std;
set<string>ss;  
void tmp() {
    int n, m, t;
    cin >> t >> n >> m;
    for (int i = 1; i <= t; i++) {
        string s;
        cin >> s;
        if (i == m && ss.count(s) == 0) {   // count() 用来查找set中某个某个键值出现的次数
            cout << s << endl; 
            ss.insert(s);
            m += n;
        }
        else if (i == m && ss.count(s) != 0) {   // 如果当前的重复了就往后遍历
            m++;
        }
    }
    if (ss.empty()) {   // 如果set容器为空就是代表没有
        cout << "Keep going..." << endl;
    }
}
int main() {
    tmp();
    return 0;
}

 

1069 微博转发抽奖 (20 分)

标签:int   code   i++   std   div   cin   没有   end   ring   

原文地址:https://www.cnblogs.com/Hk456/p/10798876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!