結果
問題 | No.1384 Bishop and Rook |
ユーザー | T101010101 |
提出日時 | 2023-02-23 22:34:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,058 bytes |
コンパイル時間 | 2,911 ms |
コンパイル使用メモリ | 266,808 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-23 15:53:54 |
合計ジャッジ時間 | 15,955 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
ソースコード
#pragma region Macros // #pragma GCC target("avx,avx2,fma") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include <bits/extc++.h> // #include <bits/stdc++.h> using namespace std; using namespace __gnu_pbds; // using namespace __gnu_cxx; // #include <atcoder/fenwicktree> // #include <atcoder/segtree> // #include <atcoder/maxflow> // using namespace atcoder; // #include <boost/multiprecision/cpp_int.hpp> // namespace mp = boost::multiprecision; // using Bint = mp::cpp_int; #define TO_STRING(var) # var #define pb emplace_back #define int ll #define endl '\n' using ll = long long; using ld = long double; const ld PI = acos(-1); const ld EPS = 1e-10; const ll INFL = 1LL << 61; // const int MOD = 998244353; const int MOD = 1000000007; __attribute__((constructor)) void constructor() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); } template<int mod> class modint{ public: int val = 0; modint(int x = 0) { while (x < 0) x += mod; val = x % mod; } modint(const modint &r) { val = r.val; } // コピーコンストラクタ modint operator -(){ return modint(-val); } // 単項 modint operator +(const modint &r) { return modint(*this) += r; } modint operator -(const modint &r) { return modint(*this) -= r; } modint operator *(const modint &r) { return modint(*this) *= r; } modint operator /(const modint &r) { return modint(*this) /= r; } modint &operator +=(const modint &r) { val += r.val; if (val >= mod) val -= mod; return *this; } modint &operator -=(const modint &r) { if (val < r.val) val += mod; val -= r.val; return *this; } modint &operator *=(const modint &r) { val = val * r.val % mod; return *this; } modint &operator /=(const modint &r) { int a = r.val, b = mod, u = 1, v = 0; while (b) { int t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } val = val * u % mod; if (val < 0) val += mod; return *this; } bool operator ==(const modint& r) { return this -> val == r.val; } bool operator <(const modint& r) { return this -> val < r.val; } bool operator !=(const modint& r) { return this -> val != r.val; } }; using mint = modint<MOD>; istream &operator >>(istream &is, mint& x) { int t; is >> t; x = t; return (is); } ostream &operator <<(ostream &os, const mint& x) { return os << x.val; } mint modpow(const mint &a, int n) { if (n == 0) return 1; mint t = modpow(a, n / 2); t = t * t; if (n & 1) t = t * a; return t; } int modpow(int x, int N, int mod) { int ret = 1; while (N > 0) { if (N % 2 == 1) ret = ret * x % mod; x = x * x % mod; N /= 2; } return ret; } int ceil(int x, int y) { return (x > 0 ? (x + y - 1) / y : x / y); } #pragma endregion signed main() { int T; cin >> T; for (int t = 0; t < T; t++) { int H, W; cin >> H >> W; if (H == 1 && W == 1) { cout << 1 << " " << 1 << endl; continue; } else if (H % 2 or W % 2) { cout << -1 << endl; continue; } int i = 0, j = 1; int cnt = 0; // HWで終了 // cout << 1 << " " << 2 << endl; vector<vector<int>> dp(H,vector<int>(W)); while (cnt < H * W) { cout << i + 1 << " " << j + 1 << endl; dp[i][j] = cnt; if (i % 4 < 2) { if (i % 2 == 0 && j == 1) { i += 1; j -= 1; } else if (i % 2 == 1 && j == 0) { i -= 1; } else if (i % 2 == 0 && j % 2 == 0) { i += 1; j += 1; } else if (i % 2 == 1 && j % 2 == 1 && j + 1 < W) { j++; } else if (i % 2 == 1 && j % 2 == 1) { i++; } else if (i % 2 == 1) { i--; j++; } else if (i % 2 == 0) { j--; } } else { if (i % 2 == 0 && j == 1) { i += 1; j -= 1; } else if (i % 2 == 1 && j == 0) { i -= 1; } else if (i % 2 == 0 && j == 0) { i += 1; j += 1; } else if (i % 2 == 1 && j == 1) { i += 1; } else if (i % 2 == 0 && j % 2 == 1) { i++; j--; } else if (i % 2 == 1 && j % 2 == 0) { j++; } else if (i % 2 == 1) { i--; j--; } else if (i % 2 == 0) { j--; } } cnt++; } // for (int i = 0; i < H; i++) { // for (int j = 0; j < W; j++) { // cout << dp[i][j] << " "; // } // cout << endl; // } } }