-
Notifications
You must be signed in to change notification settings - Fork 1
/
simple.cpp
48 lines (34 loc) · 825 Bytes
/
simple.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
/*
Resolve o problema: dado um grafo funcional valorado, com O(N) estados e um tempo T, qual estado se termina após uma soma de pesos igual T for percorrida
Geralmente nesses problemas, o T significa a duração da simulação, e os pesos das arestas representam o tempo da transição de um estado para outro.
Versão simples: os pesos das arestas são 1.
*/
#include <bits/stdc++.h>
using namespace std;
struct State {
State next() {
}
int hash() {
}
};
struct Simulator {
map<int, int> vis;
State Simulate(int t, State cur) {
int period = 0;
while(t > 0) {
if(vis.count(cur.hash())) {
period -= vis[cur.hash()];
break;
}
vis[cur.hash()] = period;
cur = cur.next();
period++;
t--;
}
if(t) t %= period;
while(t--) {
cur = cur.next();
}
return cur;
}
};