結果

問題 No.1068 #いろいろな色 / Red and Blue and more various colors (Hard)
ユーザー milanis48663220milanis48663220
提出日時 2020-05-29 23:13:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,831 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 91,228 KB
実行使用メモリ 9,900 KB
最終ジャッジ日時 2024-04-24 01:09:54
合計ジャッジ時間 10,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 10 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 425 ms
9,644 KB
testcase_14 AC 432 ms
9,644 KB
testcase_15 AC 423 ms
9,772 KB
testcase_16 AC 432 ms
9,640 KB
testcase_17 AC 436 ms
9,644 KB
testcase_18 AC 460 ms
9,644 KB
testcase_19 AC 450 ms
9,772 KB
testcase_20 AC 438 ms
9,644 KB
testcase_21 AC 432 ms
9,768 KB
testcase_22 AC 433 ms
9,772 KB
testcase_23 AC 433 ms
9,644 KB
testcase_24 AC 438 ms
9,768 KB
testcase_25 AC 437 ms
9,900 KB
testcase_26 AC 458 ms
9,772 KB
testcase_27 AC 431 ms
9,772 KB
testcase_28 AC 426 ms
9,772 KB
testcase_29 WA -
testcase_30 AC 417 ms
9,640 KB
testcase_31 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

const ll MOD = 998244353;
int N, Q;
ll A[200000], B[10000]; 
    
#define root 3
    
unsigned int add(const unsigned int x, const unsigned int y)
{
    return (x + y < MOD) ? x + y : x + y - MOD;
}
    
unsigned int sub(const unsigned int x, const unsigned int y)
{
    return (x >= y) ? (x - y) : (MOD - y + x);
}
    
unsigned int mul(const unsigned int x, const unsigned int y)
{
    return (unsigned long long)x * y % MOD;
}
    
unsigned int mod_pow(unsigned int x, unsigned int n)
{
    unsigned int res = 1;
    while(n > 0){
        if(n & 1){ res = mul(res, x); }
        x = mul(x, x);
        n >>= 1;
    }
    return res;
}
    
unsigned int inverse(const unsigned int x)
{
    return mod_pow(x, MOD - 2);
}
    
void ntt(vector<int>& a, const bool rev = false)
{
    unsigned int i, j, k, l, p, q, r, s;
    const unsigned int size = a.size();
    if(size == 1) return;
    vector<int> b(size);
    r = rev ? (MOD - 1 - (MOD - 1) / size) : (MOD - 1) / size;
    s = mod_pow(root, r);
    vector<unsigned int> kp(size / 2 + 1, 1);
    for(i = 0; i < size / 2; ++i) kp[i + 1] = mul(kp[i], s);
    for(i = 1, l = size / 2; i < size; i <<= 1, l >>= 1){
        for(j = 0, r = 0; j < l; ++j, r += i){
            for(k = 0, s = kp[i * j]; k < i; ++k){
                p = a[k + r], q = a[k + r + size / 2];
                b[k + 2 * r] = add(p, q);
                b[k + 2 * r + i] = mul(sub(p, q), s);
            }
        }
        swap(a, b);
    }
    if(rev){
        s = inverse(size);
        for(i = 0; i < size; i++){ a[i] = mul(a[i], s); }
    }
}
    
vector<int> convolute(const vector<int>& a, const vector<int>& b)
{
    const int size = (int)a.size() + (int)b.size() - 1;
    int t = 1;
    while(t < size){ t <<= 1; }
    vector<int> A(t, 0), B(t, 0);
    for(int i = 0; i < (int)a.size(); i++){ A[i] = a[i]; }
    for(int i = 0; i < (int)b.size(); i++){ B[i] = b[i]; }
    ntt(A), ntt(B);
    for (int i = 0; i < t; i++){ A[i] = mul(A[i], B[i]); }
    ntt(A, true);
    A.resize(size);
    return A;
}

vector<int> calc(int l, int r){
    if(l == r){
        vector<int> ans;
        ans.push_back(A[l]-1); ans.push_back(1);
        return ans;
    }
    int c = (l+r)/2;
    auto vl = calc(l, c);
    auto vr = calc(c+1, r);
    auto ans =  convolute(vl, vr);
    return ans;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N >> Q;
    for(int i = 0; i < N; i++) {
        cin >> A[i];
        A[i]%= MOD;
    }
    for(int i = 0; i < Q; i++) cin >> B[i];
    auto conv = calc(0, N-1);
    for(int i = 0; i < Q; i++) {
        cout << conv[B[i]] << endl;
    }    
}
0