-
Notifications
You must be signed in to change notification settings - Fork 23
/
testlab9.c
427 lines (391 loc) · 12.6 KB
/
testlab9.c
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
#include "testLab.h"
#include <stdio.h>
#include <string.h>
static int testN = 0;
static const struct {const char *const in, *const out1, *const out2, *const out20;} testInOut[] = {
{"0\n0 0\n0\n", "bad vertex"},
{"5001\n1 1\n1\n1 1 1\n", "bad number of vertices"},
{"2\n2 2\n4\n1 1 1\n1 2 1\n2 1 1\n2 2 1\n", "bad number of edges"},
{"2\n2 2\n2\n1 1 1\n1 2 1\n", "bad number of edges"},
{"2\n1 2\n1\n1 2 -1\n", "bad length"},
{"2\n1 2\n0\n", "0 oo", "no path"},
{"3\n1 3\n2\n1 2 2147483647\n2 3 2147483647\n", "0 2147483647 INT_MAX+", "3 2 1"},
{"3\n1 3\n3\n1 2 2147483647\n2 3 2147483647\n1 3 1\n", "0 2147483647 1", "3 1"},
{"4\n1 3\n4\n1 2 2147483647\n2 3 2147483647\n3 4 2147483647\n4 1 2147483647\n", "0 2147483647 INT_MAX+ 2147483647", "overflow"},
{"2\n1 2\n1\n1 2 2147483648\n", "bad length"},
{"4\n1 3\n2\n1 2 2147483647\n2 3 2147483647\n", "0 2147483647 INT_MAX+ oo", "3 2 1"},
{"1\n1 1\n0\n", "0", "1"},
{"2\n1 1\n1\n1 1 2147483647", "0 oo", "1"},
{"2\n2 2\n1\n1 1 2147483647", "oo 0", "2"},
{"4\n1 2\n4\n1 2 2147483647\n2 3 2147483647\n3 4 2147483647\n4 1 2147483647\n", "0 2147483647 INT_MAX+ 2147483647", "2 1"},
{"4\n3 3\n4\n1 2 2147483647\n2 3 2147483647\n3 4 2147483647\n4 1 2147483647\n", "INT_MAX+ 2147483647 0 2147483647", "3"},
{"4\n1 1\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "0 1 3 7", "1"},
{"4\n1 2\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "0 1 3 7", "2 1"},
{"4\n1 3\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "0 1 3 7", "3 2 1"},
{"4\n1 4\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "0 1 3 7", "4 3 2 1"},
{"4\n2 1\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "1 0 2 6", "1 2"},
{"4\n2 2\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "1 0 2 6", "2"},
{"4\n2 3\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "1 0 2 6", "3 2"},
{"4\n2 4\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "1 0 2 6", "4 3 2"},
{"4\n3 1\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "3 2 0 4", "1 2 3"},
{"4\n3 2\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "3 2 0 4", "2 3"},
{"4\n3 3\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "3 2 0 4", "3"},
{"4\n3 4\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "3 2 0 4", "4 3"},
{"4\n4 1\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "7 6 4 0", "1 2 3 4"},
{"4\n4 2\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "7 6 4 0", "2 3 4"},
{"4\n4 3\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "7 6 4 0", "3 4"},
{"4\n4 4\n4\n1 2 1\n2 3 2\n3 4 4\n4 1 8\n", "7 6 4 0", "4"},
{"4\n1 1\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "0 1 2 1", "1"},
{"4\n1 2\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "0 1 2 1", "2 1"},
{"4\n1 3\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "0 1 2 1", "3 2 1", "3 4 1"},
{"4\n1 4\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "0 1 2 1", "4 1"},
{"4\n2 1\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 0 1 2", "1 2"},
{"4\n2 2\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 0 1 2", "2"},
{"4\n2 3\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 0 1 2", "3 2"},
{"4\n2 4\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 0 1 2", "4 3 2", "4 1 2"},
{"4\n3 1\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "2 1 0 1", "1 2 3", "1 4 3"},
{"4\n3 2\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "2 1 0 1", "2 3"},
{"4\n3 3\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "2 1 0 1", "3"},
{"4\n3 4\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "2 1 0 1", "4 3"},
{"4\n4 1\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 2 1 0", "1 4"},
{"4\n4 2\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 2 1 0", "2 3 4", "2 1 4"},
{"4\n4 3\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 2 1 0", "3 4"},
{"4\n4 4\n4\n1 2 1\n2 3 1\n3 4 1\n4 1 1\n", "1 2 1 0", "4"},
};
static int FeedFromArray(void)
{
FILE *const in = fopen("in.txt", "w+");
if (!in) {
printf("can't create in.txt. No space on disk?\n");
return -1;
}
fprintf(in, "%s", testInOut[testN].in);
fclose(in);
return 0;
}
static int CheckFromArray(void)
{
FILE *const out = fopen("out.txt", "r");
if (!out) {
printf("can't open out.txt\n");
testN++;
return -1;
}
const char* fact = Pass;
char buf1[128] = {0};
fact = ScanChars(out, sizeof(buf1), buf1);
if (fact == Pass && _strnicmp(testInOut[testN].out1, buf1, strlen(testInOut[testN].out1)) != 0) {
fact = Fail;
}
if (fact == Pass && testInOut[testN].out2 != NULL) { // check path
char buf2[128] = {0};
fact = ScanChars(out, sizeof(buf2), buf2);
if (fact == Pass && _strnicmp(testInOut[testN].out2, buf2, strlen(testInOut[testN].out2)) != 0) {
if (testInOut[testN].out20 == NULL || _strnicmp(testInOut[testN].out20, buf2, strlen(testInOut[testN].out20)) != 0) {
printf("wrong output -- ");
fact = Fail;
}
}
}
if (fact == Pass && HaveGarbageAtTheEnd(out)) {
fact = Fail;
}
fclose(out);
printf("%s\n", fact);
testN++;
return fact == Fail;
}
static int LabTimeout;
static size_t LabMemoryLimit;
static int feederBig(void)
{
FILE *const in = fopen("in.txt", "w+");
int i;
if (!in) {
printf("can't create in.txt. No space on disk?\n");
return -1;
}
fprintf(in, "5000\n1 5000\n4999\n");
for (i = 0; i < 4999; i++) {
fprintf(in, "%d %d 1\n", i+1, i+2);
}
fclose(in);
LabMemoryLimit = 5000*5000*4+MIN_PROCESS_RSS_BYTES;
return 0;
}
static int checkerBig(void)
{
FILE *const out = fopen("out.txt", "r");
int i;
const char* message = Pass;
if (!out) {
printf("can't open out.txt\n");
testN++;
return -1;
}
for (i = 0; i < 5000; i++) {
int d;
message = ScanInt(out, &d);
if (message != Pass) {
break;
}
if (d != i) {
printf("wrong output -- ");
message = Fail;
break;
}
}
if (message == Pass) {
for (i = 0; i < 5000; i++) {
int d;
message = ScanInt(out, &d);
if (message != Pass) {
break;
}
if (d != 5000-i) {
printf("wrong output -- ");
message = Fail;
break;
}
}
}
if (message == Pass && HaveGarbageAtTheEnd(out)) {
message = Fail;
}
fclose(out);
printf("%s\n", message);
testN++;
return message == Fail;
}
static int feederBig1(void)
{
FILE *const in = fopen("in.txt", "w+");
int i;
if (!in) {
printf("can't create in.txt. No space on disk?\n");
return -1;
}
fprintf(in, "5000\n1 2501\n5000\n");
for (i = 0; i < 4999; i++) {
fprintf(in, "%d %d 1\n", i+1, i+2);
}
fprintf(in, "5000 1 1\n");
fclose(in);
LabMemoryLimit = 5000*5000*4+MIN_PROCESS_RSS_BYTES;
return 0;
}
static int checkerBig1(void)
{
FILE *const out = fopen("out.txt", "r");
int i;
const char* message = Pass;
int p[2501], v1 = 1, v2 = 1; // two shortest paths exist
if (!out) {
printf("can't open out.txt\n");
testN++;
return -1;
}
for (i = 0; i < 5000; i++) {
int d;
message = ScanInt(out, &d);
if (message != Pass) {
break;
}
if ((i <= 2500 && d != i) || (i > 2500 && d != 5000-i)) {
printf("wrong output -- ");
message = Fail;
break;
}
}
if (message == Pass) {
for (i = 0; i < 2501; i++) {
message = ScanInt(out, &p[i]);
if (message != Pass) {
break;
}
}
for (i = 0; i < 2501; i++)
if (p[i] != 2501-i) { // 2501 2500 2499 ... 1
v1 = 0;
break;
}
for (i = 0; i < 2500; i++)
if (p[i] != 2501+i) { // 2501 2502 ... 4999 5000 1
v2 = 0;
break;
}
if (p[2500] != 1) {
v2 = 0;
}
if (v1 == 0 && v2 == 0) {
printf("wrong output -- ");
message = Fail;
}
}
if (message == Pass && HaveGarbageAtTheEnd(out)) {
message = Fail;
}
fclose(out);
printf("%s\n", message);
testN++;
return message == Fail;
}
static int feederBig2(void)
{
FILE *const in = fopen("in.txt", "w+");
int i;
DWORD t;
if (!in) {
printf("can't create in.txt. No space on disk?\n");
return -1;
}
printf("Creating a large graph...");
fflush(stdout);
t = GetTickCount();
fprintf(in, "5000\n1 2\n%d\n", 5000*4999/2-1);
for (i = 0; i+1 < 5000; i++) {
int j;
for (j = i+1; j < 5000; j++) {
if ((i == 0 || i == 1 || i == 1984) && (j == 0 || j == 1 || j == 1984)) {
continue;
}
if (fprintf(in, "%d %d 2\n", i+1, j+1) < 2) {
printf("can't create in.txt. No space on disk?\n");
fclose(in);
return -1;
}
}
}
fprintf(in, "1 1985 1\n");
fprintf(in, "2 1985 1\n");
fclose(in);
t = RoundUptoThousand(GetTickCount() - t);
printf("done in T=%u seconds. Starting exe with timeout T+6... ", (unsigned)t/1000);
LabTimeout = (int)t+6000;
fflush(stdout);
LabMemoryLimit = 5000*5000*4+MIN_PROCESS_RSS_BYTES;
return 0;
}
static int checkerBig2(void)
{
FILE *const out = fopen("out.txt", "r");
int i;
const char* message = Pass;
if (!out) {
printf("can't open out.txt\n");
testN++;
return -1;
}
for (i = 1; i <= 5000; i++) {
int d;
message = ScanInt(out, &d);
if (message != Pass) {
break;
}
if (i != 1 && i != 2 && i != 1985 && d != 2) {
printf("wrong output -- ");
message = Fail;
break;
}
if (i == 1 && d != 0) {
printf("wrong output -- ");
message = Fail;
break;
}
if (i == 2 && d != 2) {
printf("wrong output -- ");
message = Fail;
break;
}
if (i == 1985 && d != 1) {
printf("wrong output -- ");
message = Fail;
break;
}
}
if (message == Pass) {
int d1, d2, d3;
if (ScanIntInt(out, &d1, &d2) != Pass || ScanInt(out, &d3) != Pass) {
message = Fail;
} else if (d1 != 2 || d2 != 1985 || d3 != 1) {
printf("wrong output -- ");
message = Fail;
}
}
if (message == Pass && HaveGarbageAtTheEnd(out)) {
message = Fail;
}
fclose(out);
printf("%s\n", message);
testN++;
return message == Fail;
}
const TLabTest LabTests[] = {
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{FeedFromArray, CheckFromArray},
{feederBig, checkerBig},
{feederBig1, checkerBig1},
{feederBig2, checkerBig2},
};
TLabTest GetLabTest(int testIdx) {
return LabTests[testIdx];
}
int GetTestCount(void) {
return sizeof(LabTests)/sizeof(LabTests[0]);
}
const char* GetTesterName(void) {
return "Lab 9 Dijkstra Shortest Path";
}
static int LabTimeout = 3000;
int GetTestTimeout(void) {
return LabTimeout;
}
static size_t LabMemoryLimit = MIN_PROCESS_RSS_BYTES;
size_t GetTestMemoryLimit(void) {
return LabMemoryLimit;
}