Skip to content

Commit 84529dc

Browse files
committed
fix template
1 parent b982022 commit 84529dc

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

marathon/template.cpp

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,24 @@ bool chmax(Tp& a, const Tp& b) {
7575
#include "/home/tsutaj/Documents/compro/cpp_library/marathon/rand.cpp"
7676
Rand rnd(35023503980LL);
7777
Timer timer;
78+
using Answer = vector<int>; // TODO
79+
80+
void input() {
81+
82+
}
83+
84+
void output(const Answer& answer, bool is_final = false) {
85+
86+
}
87+
88+
void solve() {
89+
// auto ans = get_answer();
90+
// output(ans, true);
91+
}
7892

7993
int main() {
8094
timer.setStart();
81-
95+
input();
96+
solve();
8297
return 0;
8398
}

0 commit comments

Comments
 (0)