-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
166 lines (151 loc) · 4.35 KB
/
main.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
NAME: Mitch Worsey
STUDENT ID: 8370927291
REGULAR VERSION
*/
#include <cstdlib>
#include <iostream>
#include <iomanip>
#include <fstream>
#include <sys/time.h>
#include <stdio.h>
#include <vector>
#include <cmath>
#include <limits>
#include <ctime>
using namespace std;
struct State {
int lives, total, scratch;
bool hold;
float prob;
State(int l = 0, int t = 0, int s = 0, bool h = false, float p = 0.0) :
lives(l), total(t), scratch(s), hold(h), prob(p) { }
};
void print(vector<State> states){
ofstream fout;
fout.open("output.txt");
for(int x = 0; x < states.size(); x++){
if(states[x].scratch > 0 && states[x].scratch + states[x].total < 40){
fout << states[x].lives << " " << states[x].total << " " << states[x].scratch << " ";
if(states[x].hold)
fout << "Yes ";
else
fout << "No ";
fout << states[x].prob << endl;
}
}
fout.close();
}
void APrint(vector<State> states){
ofstream fout;
fout.open("output.txt");
fout << "Assuming I have X > 0 lives, a total score of 20 and a scratch score of Y < 20, " <<
"the states for which I should yell hold are:" << endl << endl;
vector< vector<int> > values;
vector<int> XVals, YVals;
for(int x = 0; x < states.size(); x++){
if(states[x].scratch > 0 && states[x].scratch + states[x].total < 40){
if(states[x].lives > 0 && states[x].total == 20 && states[x].scratch < 20 && states[x].hold){
fout << states[x].lives << " " << states[x].total << " " << states[x].scratch << " ";
if(states[x].hold)
fout << "Yes ";
else
fout << "No ";
fout << states[x].prob << endl;
}
}
}
fout.close();
}
void BPrint(vector<State> states){
ofstream fout;
fout.open("output.txt");
float winProb = 0.0;
for(int x = 0; x < states.size(); x++){
if(states[x].scratch == 0 && states[x].total == 0 && states[x].lives == 5){
winProb = states[x].prob;
fout << "Start state: " << endl;
fout << states[x].lives << " " << states[x].total << " " << states[x].scratch << " ";
if(states[x].hold)
fout << "Yes ";
else
fout << "No ";
fout << states[x].prob << endl << endl;
}
}
fout << "Expected profit = $500 x " << winProb << " = $" << setprecision(5) << 500*winProb << endl;
fout << "Willing to pay at most $" << setprecision(5) << 500*winProb <<
" to participate in this game in order to maximize expected profit." << endl;
fout.close();
}
void generateStates(vector<State> &states){
for(int l = 5; l > 0; l--){
for(int t = 0; t < 45; t++){
for(int s = 0; s+t < 45; s++)
if(s + t < 40)
states.push_back(State(l, t, s, false, 0.0));
else
states.push_back(State(l, t, s, false, 1.0));
}
}
}
void valueIteration(vector<State> &states){
for(int i = 0; i < 100; i++){
for(int s = 0; s < states.size(); s++){
if(states[s].scratch + states[s].total < 40){
float holdProb = 0.0;
float noHoldProb = 0.0;
for(int r = 1; r <= 6; r++){
if(r == 6){
for(int t = 0; t < states.size(); t++){
if(states[t].lives == states[s].lives-2 &&
states[t].total == states[s].total+states[s].scratch &&
states[t].scratch == 0){
holdProb += (1.0/6.0) * states[t].prob;
//cout << "State: " << s << endl;
}
if(states[t].lives == states[s].lives-1 &&
states[t].total == states[s].total &&
states[t].scratch == 0){
noHoldProb += (1.0/6.0) * states[t].prob;
//cout << "State: " << s << endl;
}
}
}
else{
for(int t = 0; t < states.size(); t++){
if(states[t].lives == states[s].lives-1 &&
states[t].total == states[s].total+states[s].scratch &&
states[t].scratch == r){
holdProb += (1.0/6.0) * states[t].prob;
//cout << "State: " << s << " Roll: " << r << endl;
}
if(states[t].lives == states[s].lives &&
states[t].total == states[s].total &&
states[t].scratch == states[s].scratch+r){
noHoldProb += (1.0/6.0) * states[t].prob;
//cout << "State: " << s << " Roll: " << r << endl;
}
}
}
}
if(holdProb > noHoldProb){
states[s].prob = holdProb;
states[s].hold = true;
}
else{
states[s].prob = noHoldProb;
states[s].hold = false;
}
}}
}
}
int main(){
vector<State> states;
generateStates(states);
valueIteration(states);
//APrint(states);
//BPrint(states);
print(states);
return 0;
}