結果

問題 No.2367 Painting Gascket
ユーザー milanis48663220milanis48663220
提出日時 2023-06-30 23:46:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,690 ms / 2,000 ms
コード長 3,464 bytes
コンパイル時間 1,446 ms
コンパイル使用メモリ 136,332 KB
実行使用メモリ 54,636 KB
最終ジャッジ日時 2024-07-07 11:33:05
合計ジャッジ時間 27,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,132 KB
testcase_01 AC 5 ms
8,268 KB
testcase_02 AC 21 ms
8,504 KB
testcase_03 AC 3 ms
8,168 KB
testcase_04 AC 3 ms
8,120 KB
testcase_05 AC 4 ms
8,140 KB
testcase_06 AC 4 ms
8,100 KB
testcase_07 AC 3 ms
8,384 KB
testcase_08 AC 1,674 ms
54,596 KB
testcase_09 AC 1,124 ms
39,332 KB
testcase_10 AC 32 ms
9,028 KB
testcase_11 AC 1,501 ms
49,236 KB
testcase_12 AC 32 ms
8,932 KB
testcase_13 AC 460 ms
20,548 KB
testcase_14 AC 223 ms
14,352 KB
testcase_15 AC 231 ms
14,216 KB
testcase_16 AC 597 ms
24,552 KB
testcase_17 AC 1,527 ms
50,628 KB
testcase_18 AC 1,187 ms
41,044 KB
testcase_19 AC 738 ms
28,652 KB
testcase_20 AC 1,507 ms
50,264 KB
testcase_21 AC 862 ms
31,820 KB
testcase_22 AC 1,570 ms
52,420 KB
testcase_23 AC 1,167 ms
40,728 KB
testcase_24 AC 458 ms
20,652 KB
testcase_25 AC 507 ms
21,788 KB
testcase_26 AC 94 ms
10,552 KB
testcase_27 AC 1,268 ms
42,648 KB
testcase_28 AC 1,000 ms
36,596 KB
testcase_29 AC 3 ms
8,004 KB
testcase_30 AC 3 ms
8,132 KB
testcase_31 AC 3 ms
8,132 KB
testcase_32 AC 3 ms
8,164 KB
testcase_33 AC 1,666 ms
54,596 KB
testcase_34 AC 1,690 ms
54,476 KB
testcase_35 AC 1,687 ms
54,636 KB
testcase_36 AC 1,651 ms
54,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>
#include <atcoder/modint>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

using mint = atcoder::modint1000000007;
using T = tuple<int, int, int>;

ostream& operator<<(ostream& os, const mint& m){
    os << m.val();
    return os;
}

template<typename T>
class Compress{
    public:
    vector<T> data;
    int offset;
    Compress(vector<T> data_, int offset=0): offset(offset){
        data = data_;
        sort(begin(data), end(data));
        data.erase(unique(begin(data), end(data)), end(data));
    };
    int operator[](T x) {
        auto p = lower_bound(data.begin(), data.end(), x);
        assert(x == *p);
        return offset+(p-data.begin());
	}
    T inv(int x){
        return data[x-offset];
    }
    int size(){
        return data.size();
    }
};

int k, n;

mint memo[100005][3][2][2];
bool ok[100005][3][2][2];

T nx(int a, int b, int x){
    vector<int> v;
    if(a != 0) v.push_back(a);
    if(b != 0) v.push_back(b);
    if(x != 0) v.push_back(x);
    auto cp = Compress<int>(v, 1);
    sort(v.begin(), v.end(), greater<int>());
    int m = cp.size();
    vector<int> ans(3);
    for(int i = 0; i < v.size(); i++){
        ans[i] = cp[v[i]];
    }
    // cout << "=============" << endl;
    // cout << a << ' ' << b << ' ' << x << endl;
    // print_vector(v);
    // print_vector(ans);
    return {ans[0], ans[1], ans[2]};
}

mint solve(int k, int a, int b, int c){
    assert(k != 0);
    if(k == 1){
        return mint(n-a);
    }
    if(ok[k][a][b][c]) return memo[k][a][b][c];
    mint ans = 0;
    assert(b <= a);
    assert(c <= b);
   

    for(int x = 1; x <= 4; x++){
        if(x >= a+2) continue;
        vector<vector<int>> vv = {
            {a, b},  
            {b, c},  
            {c, a},  
        };
        mint pat = [&](){
            if(x <= a) return mint(1);
            else return mint(max(0, n-a));
        }();
        mint tmp = pat;
        for(auto v: vv){
            int a = v[0];
            int b = v[1];
            auto [aa, bb, cc] = nx(a, b, x);
            tmp *= solve(k-1, aa, bb, cc);
        }
        ans += tmp;
    }
    ok[k][a][b][c] = true;
    memo[k][a][b][c] = ans;
    return ans;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> k >> n;
    cout << solve(k+1, 0, 0, 0) << endl;
} 
0