結果

問題 No.1797 永遠のグリッド
ユーザー 👑 NachiaNachia
提出日時 2022-01-01 09:30:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,641 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 77,840 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-09 20:47:40
合計ジャッジ時間 10,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)

string get_grid_rotate(int H, int W, string S, int h, int w){
    string ans(H*W, ' ');
    rep(y,H) rep(x,W){
        int nxy = (y + h) % H;
        int nxx = (x + w) % W;
        ans[nxy * W + nxx] = S[y * W + x];
    }
    return ans;
}


i64 solve(int H, int W, int K){
    int ans = 0;
    rep(c,1001001001){
        string tmp;
        int p = c;
        rep(i,H*W){ tmp.push_back('0' + p%K); p /= K; }
        if(p != 0 && tmp == string(H*W, '0')) break;
        int ok = 1;
        rep(y,H) rep(x,W) if(get_grid_rotate(H,W,tmp,y,x) < tmp) ok = 0;
        rep(t,K) if(tmp.find('0' + t) == string::npos) ok = 0;
        ans += ok;
    }
    return ans;
}


int main(){
    int H,W,K; cin >> H >> W >> K;
    cout << "const int answer_table[4][11][11] = {";
    rep(k,4){
        if(k) cout << ",";
        cout << "{";
        rep(x,11){
            if(x) cout << ",";
            cout << "{";
            rep(y,11){
                if(y) cout << ",";
                if(k==0){ cout << 0; continue; }
                if(x*y==0){ cout << 0; continue; }
                if(10<x*y){ cout << 0; continue; }
                cout << solve(y,x,k);
            }
            cout << "}";
        }
        cout << "}";
    }
    cout << "};";
    cout << "\n";
    return 0;
}


struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0