-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path2.2.3 - Runaround Numbers.cpp
72 lines (63 loc) · 1.34 KB
/
2.2.3 - Runaround Numbers.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
64
65
66
67
68
69
70
71
72
/*
ID: nathan.18
TASK: runround
LANG: C++
*/
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <fstream>
#include <cassert>
using namespace std;
#define INF 1000000000
#define LL_INF 4500000000000000000
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define PI acos(-1.0)
#define ll long long
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
set<int> seen;
int digits[10];
bool isRunaround(int m) {
seen.clear();
int digitCt = 0;
while (m > 0) {
if (m%10 == 0 || seen.count(m%10)>0) return false;
digits[digitCt++] = m%10;
seen.insert(m%10);
m /= 10;
}
seen.clear();
reverse(digits, digits+digitCt);
int curIdx = 0;
while (seen.find(digits[curIdx]) == seen.end()) {
seen.insert(digits[curIdx]);
curIdx += digits[curIdx];
curIdx %= digitCt;
}
return seen.size() == digitCt && curIdx == 0;
}
int main() {
freopen("runround.in", "r", stdin);
freopen("runround.out", "w", stdout);
int m; cin >> m;
while (!isRunaround(++m));
cout << m << endl;
return 0;
}