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.in", "r", stdin);
// freopen("maze.out", "w", stdout); // freopen("maze.out", "w", stdout);
std ::ios_base ::sync_with_stdio(false);
FAST_IO; std ::cin.tie(0);
std::cin >> T; std::cin >> T;
while (T--) { while (T--) {
solve(); solve();
} }
return 0;
} }