This commit is contained in:
Zengtudor 2025-08-11 08:59:51 +08:00
parent 8f1e2bd8c2
commit 9ddad129d6

View File

@ -104,13 +104,10 @@ int main() {
// 题目输入为文件,实际比赛中需要取消注释
// freopen("maze.in", "r", stdin);
// freopen("maze.out", "w", stdout);
FAST_IO;
std ::ios_base ::sync_with_stdio(false);
std ::cin.tie(0);
std::cin >> T;
while (T--) {
solve();
}
return 0;
}