generated from TNFSH-Programming-Contest/tps-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubtasks.json
43 lines (43 loc) · 1018 Bytes
/
subtasks.json
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
{
"global_validators": [
"validator.cpp"
],
"subtasks": {
"samples": {
"index": 0,
"score": 0,
"text": "範例輸入輸出",
"validators": []
},
"chain": {
"index": 1,
"score": 9,
"text": "保證是一條鏈",
"validators": ["chain.cpp"]
},
"tree": {
"index": 2,
"score": 12,
"text": "$m = n - 1$",
"validators": ["tree.cpp"]
},
"we1": {
"index": 3,
"score": 15,
"text": "$w=1$ 且 $n,~m \\le 500$",
"validators": ["we1.cpp"]
},
"qnlogn": {
"index": 4,
"score": 17,
"text": "$n,~m \\le 500$",
"validators": ["qnlogn.cpp"]
},
"full": {
"index": 5,
"score": 47,
"text": "無額外限制",
"validators": []
}
}
}