結果

問題 No.2958 Placing Many L-s
ユーザー GOTKAKOGOTKAKO
提出日時 2024-11-08 23:17:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,343 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 207,472 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 23:17:20
合計ジャッジ時間 8,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 RE -
testcase_03 AC 20 ms
5,248 KB
testcase_04 AC 22 ms
5,248 KB
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 2 ms
5,248 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 AC 6 ms
5,248 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 RE -
testcase_18 AC 2 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 18 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 19 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 29 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int T; cin >> T;
    while(T--){
        int N,M; cin >> N >> M;
        if(N%2 || M%2){cout << "-1\n"; continue;}
        if(N%4 && M%4) assert(false); //ずる.
        bool swapped = false;
        if(N%4) swap(N,M),swapped = true;

        vector<vector<int>> answer(N,vector<int>(M));
        int idx = 1;
        for(int i=0; i<N; i+=4){
            for(int k=0; k<M; k+=2){
                answer.at(i).at(k) = idx; answer.at(i).at(k+1) = idx;
                answer.at(i+1).at(k) = idx+1; answer.at(i+1).at(k+1) = idx;
                answer.at(i+2).at(k) = idx+1; answer.at(i+2).at(k+1) = idx;
                answer.at(i+3).at(k) = idx+1; answer.at(i+3).at(k+1) = idx+1;
                idx += 2;
            }
        }

        if(swapped){
            vector<vector<int>> answer2(M,vector<int>(N));
            for(int i=0; i<N; i++) for(int k=0; k<M; k++) answer2.at(k).at(N-1-i) = answer.at(i).at(k);
            swap(answer,answer2); 
            swap(N,M);
        }
        cout << N*M/4 << "\n";
        for(int i=0; i<N; i++){
            for(int k=0; k<M; k++){
                if(k) cout << " ";
                cout << answer.at(i).at(k);
            }
            cout << "\n";
        }
    }
}
0