-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpat_basic_1069.cpp
63 lines (62 loc) · 1.13 KB
/
pat_basic_1069.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <stdio.h>
#include <iostream>
#include <string>
#include <set>
#include <vector>
using namespace std;
int main(){
int m, n, s, count = 0;
cin >> m >> n >> s;
set<string> st;
vector<string> v(m);
for (int i = 0; i < m; i++)
{
cin >> v[i];
}
for (int i = s - 1; i < m; i += n)
{
if (st.find(v[i]) == st.end()){
st.insert(v[i]);
cout << v[i] << endl;
}
else{
while (i < m){
i += 1;
if (st.find(v[i]) == st.end()){
st.insert(v[i]);
cout << v[i] << endl;
break;
}
else{
continue;
}
}
}count++;
}
if (count == 0)
cout << "Keep going..." << endl;
return 0;
}
//别人的代码
#include <iostream>
#include <map>
using namespace std;
int main() {
int m, n, s;
scanf("%d%d%d", &m, &n, &s);
string str;
map<string, int> mapp;
bool flag = false;
for (int i = 1; i <= m; i++) {
cin >> str;
if (mapp[str] == 1) s = s + 1;
if (i == s && mapp[str] == 0) {
mapp[str] = 1;
cout << str << endl;
flag = true;
s = s + n;
}
}
if (flag == false) cout << "Keep going...";
return 0;
}