結果

問題 No.2824 Lights Up! (Grid Edition)
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-04-11 14:13:27
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,585 bytes
コンパイル時間 1,378 ms
コンパイル使用メモリ 132,328 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-26 20:30:41
合計ジャッジ時間 9,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 3
other AC * 49 WA * 49 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <utility>
#include <numeric>
#include <algorithm>
#include <iostream>
#include <valarray>
#include <vector>
#include <ranges>

void solve() {
    int n; std::cin >> n;

    std::vector pos(n, std::valarray<bool>(n));
    std::valarray<bool> row(n), col(n);

    for(int i : std::views::iota(0, n)) {
        for(int j : std::views::iota(0, n)) {
            char c; std::cin >> c;
            if((pos[i][j] = (c == '#'))) row[i] ^= 1, col[j] ^= 1;
        }
    }

    auto check_parity = [&]() {
        if(row[0] != col[0]) {
            std::cout << -1 << "\n";
            exit(0);
        }
        for(const int i : std::views::iota(1, n)) {
            if(row[0] != row[i] or col[0] != col[i]) {
                std::cout << -1 << "\n";
                exit(0);
            }
        }
    };

    check_parity();

    n--;

    for(int i : std::views::iota(1, n)) {
        for(int j : std::views::iota(0, n)) {
            pos[i][j] ^= pos[i - 1][j];
        }
    }

    for(int i : std::views::iota(0, n)) {
        for(int j : std::views::iota(1, n)) {
            pos[i][j] ^= pos[i][j - 1];
        }
    }

    std::ranges::fill(row, 0);
    std::ranges::fill(col, 0);
    for(int i : std::views::iota(0, n)) {
        for(int j : std::views::iota(0, n)) {
            if(pos[i][j]) row[i] ^= 1, col[j] ^= 1;
        }
    }

    if(n % 2 == 1) check_parity();

    std::cout << 0 << "\n";

    return;
}

int main() {
    solve();
    return 0;
}

__attribute__((constructor)) inline void fast_io() { std::ios::sync_with_stdio(false), std::cin.tie(nullptr); }
0