We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a742005 commit 3be3888Copy full SHA for 3be3888
1 file changed
marathon/template.cpp
@@ -77,6 +77,10 @@ Rand rnd(35023503980LL);
77
Timer timer;
78
using Answer = vector<int>; // TODO
79
80
+enum Dir { U, R, D, L };
81
+const int dr[4] = {-1, 0, 1, 0};
82
+const int dc[4] = {0, 1, 0, -1};
83
+
84
void input() {
85
86
}
0 commit comments