-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
469 lines (420 loc) · 11.9 KB
/
index.js
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
function parse(text) {
"use strict";
var errors = [];
var ch = text.length === 0 ? null : text[0];
var k = 0;
var l = 0;
var c = 0;
var vmin = null;
var vmax = null;
var wishes = null;
var vmin_pos = null;
var vmin_sum = 0;
var vmax_sum = 0;
function eat() {
if (ch === "\n") {
l++;
c = 0;
} else {
c++;
}
k++;
if (k < text.length) {
ch = text[k];
} else {
ch = null;
}
}
function eat_line() {
while (is_space(ch)) {
eat();
}
if (ch === "\n") {
eat();
return;
}
if (ch === "#") {
skip_line();
return;
}
if (ch !== null) {
eat_row();
}
}
function eat_row() {
var i;
var cc;
if (!is_digit(ch)) {
cc = c;
skip_line();
errors.push({
from: CodeMirror.Pos(l, cc),
to: CodeMirror.Pos(l, c),
message: "A row must begin with a number"
});
return;
}
var row = [];
var x = eat_number();
if (isNaN(x)) {
skip_line();
return;
}
row.push(x);
while (is_space(ch)) {
eat();
}
while (ch === "," || ch === ";") {
cc = c;
eat(); // eat the comma
while (is_space(ch)) {
eat();
}
if (!is_digit(ch)) {
errors.push({
from: CodeMirror.Pos(l, cc),
to: CodeMirror.Pos(l, c),
message: "After a comma, a number is expected"
});
skip_line();
return;
}
x = eat_number();
if (isNaN(x)) {
skip_line();
return;
}
row.push(x);
cc = c;
while (is_space(ch)) {
eat();
}
}
if (ch === "#") {
skip_line();
}
if (ch !== "\n" && ch !== null) {
cc = c;
skip_line();
errors.push({
from: CodeMirror.Pos(l, cc),
to: CodeMirror.Pos(l, c),
message: "This is not a valid content"
});
return;
}
if (vmin !== null && vmin.length !== row.length) {
errors.push({
from: CodeMirror.Pos(l, 0),
to: CodeMirror.Pos(l, cc),
message: "All the lines must contain the same amount of values"
});
return;
}
if (vmin === null) {
vmin = row;
vmin_pos = {
line: l,
column: cc
};
vmin_sum = 0;
for (i = 0; i < vmin.length; ++i) {
vmin_sum += vmin[i];
}
} else if (vmax === null) {
vmax = row;
vmax_sum = 0;
for (i = 0; i < vmax.length; ++i) {
vmax_sum += vmax[i];
}
for (i = 0; i < vmin.length; ++i) {
if (vmax[i] < vmin[i]) {
errors.push({
from: CodeMirror.Pos(l, 0),
to: CodeMirror.Pos(l, cc),
message: "vmax must be greater or equal than vmin"
});
}
}
} else {
if (wishes === null) {
wishes = [];
}
wishes.push(row);
if (wishes.length > vmax_sum) {
errors.push({
from: CodeMirror.Pos(l, 0),
to: CodeMirror.Pos(l, cc),
message: "vmax is too small or there is too much entries"
});
}
var tmp = row.slice();
tmp.sort();
for (i = 0; i < tmp.length; ++i) {
if (tmp[i] > i) {
errors.push({
from: CodeMirror.Pos(l, 0),
to: CodeMirror.Pos(l, cc),
severity: "warning",
message: "This wish is not fair"
});
break;
}
}
}
}
function is_space(ch) {
return ch === " " || ch === "\t";
}
function is_digit(ch) {
return ch !== null && (ch >= "0" && ch <= "9");
}
function eat_number() {
var entry = ch;
eat();
while (is_digit(ch)) {
entry += ch;
eat();
}
var num = Number(entry);
if (isNaN(num) || num < 0 || entry[0] === "\n") {
errors.push({
from: CodeMirror.Pos(l, c - entry.length),
to: CodeMirror.Pos(l, c),
message: "'" + entry + "' is not a non-negative number"
});
return NaN;
}
return num;
}
function skip_line() {
while (ch !== "\n" && ch !== null) {
eat();
}
}
while (ch !== null) {
eat_line();
}
if (vmin === null) {
errors.push({
from: CodeMirror.Pos(l, 0),
to: CodeMirror.Pos(l, 0),
message: "vmin expected"
});
} else if (vmax === null) {
errors.push({
from: CodeMirror.Pos(l, 0),
to: CodeMirror.Pos(l, 0),
message: "vmax expected"
});
} else if (wishes === null) {
errors.push({
from: CodeMirror.Pos(l, 0),
to: CodeMirror.Pos(l, 0),
message: "wishes expected"
});
} else if (wishes.length < vmin_sum) {
errors.push({
from: CodeMirror.Pos(vmin_pos.line, 0),
to: CodeMirror.Pos(vmin_pos.line, vmin_pos.column),
message: "vmin is too high for the amount of entries"
});
}
var res = {
vmin: vmin,
vmax: vmax,
wishes: wishes
};
return [res, errors];
}
(function() {
"use strict";
CodeMirror.defineMode("csv", function() {
return {
startState: function() {
return {
commentLine: false
};
},
token: function(stream, state) {
if (stream.sol()) {
state.commentLine = false;
}
var ch = stream.next().toString();
if (state.commentLine) {
return "comment";
}
if (ch === "#") {
state.commentLine = true;
return "comment";
}
if (ch === "," || ch === ";") {
return "keyword";
}
return "atom";
}
};
});
CodeMirror.registerHelper("lint", "csv", function(text) {
return parse(text)[1];
});
}());
function shuffle(a) {
"use strict";
var j, x, i;
for (i = a.length; i; i--) {
j = Math.floor(Math.random() * i);
x = a[i - 1];
a[i - 1] = a[j];
a[j] = x;
}
}
function action(wishes, results) {
"use strict";
var i;
var score = 0;
for (i = 0; i < wishes.length; ++i) {
score += Math.pow(wishes[i][results[i]], 2);
}
return score;
}
var inputCode = null;
var outputCode = null;
function button_pressed() {
"use strict";
var i, j, k;
var text = inputCode.getValue();
var out = parse(text);
var ok = true;
for (i = 0; i < out[1].length; ++i) {
if (out[1][i].severity !== "warning") {
ok = false;
}
}
if (!ok) {
inputCode.focus();
inputCode.setCursor(out[1][0].from);
} else {
var vmin = out[0].vmin;
var vmax = out[0].vmax;
var wishes = out[0].wishes;
var vmin_tot = 0;
for (i = 0; i < vmin.length; ++i) {
vmin_tot += vmin[i];
}
var vmax_tot = 0;
for (i = 0; i < vmax.length; ++i) {
vmax_tot += vmax[i];
}
var permutation = [];
for (i = 0; i < wishes.length; ++i) {
permutation.push(i);
}
shuffle(permutation);
var x = Math.pow(vmin.length, 2);
for (i = 0; i < wishes.length; ++i) {
for (j = 0; j < vmin.length; ++j) {
x = Math.max(x, Math.pow(wishes[i][j], 2));
}
}
var cost = [];
for (i = 0; i < wishes.length; ++i) {
var row = [];
for (j = 0; j < vmin.length; ++j) {
var c = Math.pow(wishes[i][j], 2);
for (k = 0; k < vmin[j]; ++k) {
row.push(c);
}
for (k = vmin[j]; k < vmax[j]; ++k) {
row.push(x + c);
}
}
cost[permutation[i]] = row;
}
var start_time = new Date().getTime();
var h = new Hungarian(cost);
var solution = h.execute();
// var solution = ssp(cost);
var dt = new Date().getTime() - start_time;
console.log(dt + " ms");
for (i = 0; i < solution.length; ++i) {
for (j = 0; j < vmax.length; ++j) {
if (solution[i] >= vmax[j]) {
solution[i] -= vmax[j];
} else {
solution[i] = j;
break;
}
}
}
var result = [];
for (i = 0; i < wishes.length; ++i) {
result[i] = solution[permutation[i]];
}
var score = action(wishes, result);
text = "# attribution,score\n";
for (i = 0; i < result.length; ++i) {
text += result[i] + "," + wishes[i][result[i]] + "\n";
}
outputCode.setValue(text);
var info = document.getElementById('info');
info.value = "";
info.value += "Total score : " + score + "\n\n";
var choices = [];
var s;
for (i = 0; i < result.length; ++i) {
s = wishes[i][result[i]];
if (choices[s] === undefined) {
choices[s] = 0;
}
choices[s]++;
}
for (j = 0; j < choices.length; ++j) {
if (choices[j] === undefined) {
choices[j] = 0;
}
}
info.value += "Satisfaction distribution : " + choices.join(" ") + "\n\n";
for (i = 0; i < vmin.length; ++i) {
choices = [];
var counter = 0;
for (j = 0; j < result.length; ++j) {
if (result[j] === i) {
s = wishes[j][i];
if (choices[s] === undefined) {
choices[s] = 0;
}
choices[s]++;
counter++;
}
}
for (j = 0; j < choices.length; ++j) {
if (choices[j] === undefined) {
choices[j] = 0;
}
}
info.value += "Workshop #" + i + " " + counter + "=" + choices.join("+") + "\n";
}
}
}
function pageDidLoad() {
"use strict";
inputCode = CodeMirror.fromTextArea(document.getElementById('input'), {
lineNumbers: true,
mode: "csv",
gutters: ["CodeMirror-lint-markers"],
lint: true
});
inputCode.on("change", function() {
localStorage.input = LZString.compressToUTF16(inputCode.getValue());
});
var compressed = localStorage.input;
if (compressed !== undefined) {
inputCode.setValue(LZString.decompressFromUTF16(compressed));
}
outputCode = CodeMirror.fromTextArea(document.getElementById('output'), {
lineNumbers: true,
mode: "csv",
readOnly: true
});
}