結果

問題 No.1384 Bishop and Rook
ユーザー pockynypockyny
提出日時 2021-02-14 14:04:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,394 ms / 2,000 ms
コード長 1,825 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 11,604 KB
最終ジャッジ日時 2024-07-21 22:29:24
合計ジャッジ時間 18,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 788 ms
11,604 KB
testcase_02 AC 376 ms
5,452 KB
testcase_03 AC 146 ms
5,376 KB
testcase_04 AC 209 ms
5,376 KB
testcase_05 AC 533 ms
6,604 KB
testcase_06 AC 733 ms
7,628 KB
testcase_07 AC 860 ms
11,596 KB
testcase_08 AC 653 ms
7,504 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 466 ms
7,628 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 21 ms
5,376 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 1,144 ms
11,596 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 1,338 ms
11,592 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 24 ms
5,376 KB
testcase_19 AC 1,094 ms
11,592 KB
testcase_20 AC 13 ms
5,376 KB
testcase_21 AC 36 ms
5,376 KB
testcase_22 AC 35 ms
5,376 KB
testcase_23 AC 30 ms
5,376 KB
testcase_24 AC 37 ms
5,376 KB
testcase_25 AC 36 ms
5,376 KB
testcase_26 AC 34 ms
5,376 KB
testcase_27 AC 33 ms
5,376 KB
testcase_28 AC 32 ms
5,376 KB
testcase_29 AC 35 ms
5,376 KB
testcase_30 AC 31 ms
5,376 KB
testcase_31 AC 23 ms
5,376 KB
testcase_32 AC 29 ms
5,376 KB
testcase_33 AC 28 ms
5,376 KB
testcase_34 AC 27 ms
5,376 KB
testcase_35 AC 27 ms
5,376 KB
testcase_36 AC 20 ms
5,376 KB
testcase_37 AC 18 ms
5,376 KB
testcase_38 AC 19 ms
5,376 KB
testcase_39 AC 18 ms
5,376 KB
testcase_40 AC 22 ms
5,376 KB
testcase_41 AC 146 ms
5,376 KB
testcase_42 AC 128 ms
5,376 KB
testcase_43 AC 156 ms
5,376 KB
testcase_44 AC 182 ms
5,376 KB
testcase_45 AC 181 ms
5,376 KB
testcase_46 AC 145 ms
5,376 KB
testcase_47 AC 159 ms
5,376 KB
testcase_48 AC 152 ms
5,376 KB
testcase_49 AC 90 ms
5,376 KB
testcase_50 AC 89 ms
5,376 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 1,394 ms
11,596 KB
testcase_53 AC 570 ms
6,472 KB
testcase_54 AC 5 ms
5,376 KB
testcase_55 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int mp[1010][1010];
int main(){
    int t; cin >> t;
    while(t){
        t--;
        int i,j,n,m; cin >> n >> m;
        if(n==1 && m==1){
            cout << 0 << endl;
            cout << 1 << " " << 1 << endl;
        }else if(n&1 || m&1){
            cout << -1 << endl;
        }else{
            vector<pair<int,int>> v;
            for(j=0;j<m;j+=2){
               if((j/2)&1){
                   v.push_back({n - 2,j});
                   v.push_back({n - 1,j + 1});
                   v.push_back({n - 1,j});
                   v.push_back({n - 2,j + 1});
                   for(i=n - 3;i>0;i-=2){
                       v.push_back({i,j + 1});
                       v.push_back({i - 1,j});
                       v.push_back({i,j});
                       v.push_back({i - 1,j + 1});
                   }
               }else{
                   for(i=0;i<n - 2;i+=2){
                       v.push_back({i,j});
                       v.push_back({i + 1,j + 1});
                       v.push_back({i,j + 1});
                       v.push_back({i + 1,j});
                   }
                   v.push_back({n - 2,j});
                   v.push_back({n - 1,j + 1});
                   v.push_back({n - 1,j});
                   v.push_back({n - 2,j + 1});
               }
            }
            cout << v.size() - 1<< endl;
            for(i=0;i<v.size();i++){
                cout << v[i].first + 1 << " " << v[i].second + 1 << endl;
            }
            /*for(i=0;i<v.size();i++){
                mp[v[i].first][v[i].second] = i + 1;
            }
            for(i=0;i<n;i++){
                for(j=0;j<m;j++){
                    cout << mp[i][j] << " ";
                }
                cout << endl;
            }*/
        }
    }
}
0