Skip to content

Commit 1e1f1a1

Browse files
committed
Add TASK file for tiphunting
1 parent 40613fe commit 1e1f1a1

File tree

1 file changed

+47
-0
lines changed
  • _includes/source_code/code/37-PDP/tiphunting

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
TASK(
2+
name = "tiphunting",
3+
test_count = 37,
4+
files_dir = "testdata/37-PDP/tiphunting/",
5+
input_file = "tiphunting.in",
6+
output_file = "tiphunting.out",
7+
time_limit = 2,
8+
mem_limit = 128,
9+
solutions = [
10+
SOLUTION(
11+
name = "subtask1",
12+
source = "subtask1.cc",
13+
passes_only = [2, 3, 4, 5],
14+
lang = "c++",
15+
),
16+
SOLUTION(
17+
name = "subtask2",
18+
source = "subtask2.cc",
19+
passes_only = [6, 7, 8, 9, 10],
20+
lang = "c++",
21+
),
22+
SOLUTION(
23+
name = "subtask3",
24+
source = "subtask3.cc",
25+
passes_only = [1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
26+
lang = "c++",
27+
),
28+
SOLUTION(
29+
name = "subtask4",
30+
source = "subtask4.cc",
31+
passes_only = [6, 7, 8, 9, 10, 16, 17, 18, 19, 20, 21],
32+
lang = "c++",
33+
),
34+
SOLUTION(
35+
name = "subtask5",
36+
source = "subtask5.cc",
37+
passes_only = [22, 23, 24, 25, 26, 27],
38+
lang = "c++",
39+
),
40+
SOLUTION(
41+
name = "subtask6",
42+
source = "optimal.cc",
43+
passes_all,
44+
lang = "c++",
45+
),
46+
]
47+
)

0 commit comments

Comments
 (0)