赛题整体上偏简单, 但是需要注意数据范围和其他小细节。 A-小红的矩阵构造 显然, 如果 是奇数, 我们可以构造出类似 1 2 3 4 5 6 7 8 9 这样的答案, 若 为偶数, 考虑将偶数行翻转。 #include <bits/stdc++.h> using i64 = long long; int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int n, x = 1; std::cin >> n; std::vector<std::...