結果

問題 No.2524 Stripes
ユーザー MasKoaTSMasKoaTS
提出日時 2023-09-27 23:58:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,238 bytes
コンパイル時間 3,794 ms
コンパイル使用メモリ 249,240 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-27 23:59:09
合計ジャッジ時間 12,677 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// TLE?

#include <bits/stdc++.h>
#include <atcoder/convolution>
#define MOD 998244353ll
using namespace std;
using namespace atcoder;
using ll = long long;


struct Vector2 {
	vector<ll> v1;
	vector<ll> v2;

	Vector2(void) {
        
	}

	Vector2(vector<ll> v1, vector<ll> v2) {
		this->v1 = v1;
		this->v2 = v2;
	}
};


ll n;
vector<ll> operator*(const vector<ll>& left, const vector<ll>& right){
    vector<ll> ret = convolution<MOD>(left, right);
    while(ret.size() > n + 1){
        ret.pop_back();
    }
    return ret;
}

vector<ll> operator+(const vector<ll>& left, const vector<ll>& right){
    vector<ll> ret(max(left.size(), right.size()));
    for(int i = 0; i < left.size(); ++i){
        ret[i] += left[i];
    }
    for(int i = 0; i < right.size(); ++i){
        ret[i] += right[i];
        ret[i] %= MOD;
    }
    return ret;
}


struct Matrix22 {
    vector<ll> v11, v12, v21, v22;

    Matrix22(void) {
        
	}

	Matrix22(vector<ll> v11, vector<ll> v12, vector<ll> v21, vector<ll> v22) {
		this->v11 = v11;
        this->v12 = v12;
        this->v21 = v21;
        this->v22 = v22;
	}

	Matrix22 operator*(const Matrix22 other) const {
		return Matrix22((this->v11 * other.v11) + (this->v12 * other.v21),
            (this->v11 * other.v12) + (this->v12 * other.v22),
            (this->v21 * other.v11) + (this->v22 * other.v21),
            (this->v21 * other.v12) + (this->v22 * other.v22));
	}

    Vector2 operator*(const Vector2 other) const {
        return Vector2((this->v11 * other.v1) + (this->v12 * other.v2),
            (this->v21 * other.v1) + (this->v22 * other.v2));
    }
};


int main(){
    cin >> n;
    string s;  cin >> s;

    vector<Matrix22> M(n, Matrix22());
    for(int i = 0; i < n; ++i){
        if(s[i] == 'R'){
            M[i] = Matrix22({1}, {0, 1},
                {0}, {1});
        }
        else{
            M[i] = Matrix22({1}, {0},
                {0, 1}, {1});
        }
    }

    Vector2 v({1}, {1});
    for(Matrix22 m : M){
        v = m * v;
    }

    vector<ll> ans = v.v1 + v.v2;
    for(int i = 1; i < n + 1; ++i){
        if(i >= ans.size()){
            cout << 0 << endl;
            continue;
        }
        cout << ans[i] << endl;
    }

    return 0;
}
0