結果

問題 No.1086 桁和の桁和2
ユーザー hedwig100hedwig100
提出日時 2020-06-20 17:18:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,316 bytes
コンパイル時間 1,487 ms
コンパイル使用メモリ 170,584 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-03 17:27:58
合計ジャッジ時間 6,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 133 ms
5,504 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 86 ms
5,376 KB
testcase_11 AC 26 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 105 ms
5,376 KB
testcase_14 AC 67 ms
5,376 KB
testcase_15 AC 26 ms
5,376 KB
testcase_16 AC 143 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 164 ms
5,760 KB
testcase_20 AC 21 ms
5,376 KB
testcase_21 AC 142 ms
5,376 KB
testcase_22 AC 199 ms
6,400 KB
testcase_23 AC 123 ms
5,376 KB
testcase_24 AC 84 ms
5,376 KB
testcase_25 AC 165 ms
5,888 KB
testcase_26 AC 137 ms
5,376 KB
testcase_27 AC 100 ms
5,376 KB
testcase_28 AC 85 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 204 ms
6,400 KB
testcase_31 AC 204 ms
6,272 KB
testcase_32 WA -
testcase_33 AC 205 ms
6,400 KB
testcase_34 AC 210 ms
6,400 KB
testcase_35 AC 134 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i ++)
using namespace std;
using ll = long long;
using PL = pair<ll,ll>;
using P = pair<int,int>;
constexpr int INF = 1000000000;
constexpr long long HINF = 1000000000000000;
constexpr long long MOD = 1000000007;
constexpr double EPS = 1e-4;
constexpr double PI = 3.14159265358979;


struct Debug {
    template<class T> static void print_value(T value,const char* name) {
        cout << name << ": " << value << '\n';
    }
    template<class T> static void print_vector(vector<T> &vec,const char* name) {
        for (int i = 0;i < vec.size();++i) {
            cout << "  " << name;
            printf("[%d]: ",i);
            cout << vec[i];
        }
        cout << '\n';
    }
    template<class T> static void print_2dvector(vector<vector<T>> &vec,const char* name) {
        for (int i = 0;i < vec.size();++i) {
            for (int j = 0;j < vec[i].size();++j) {
                cout << "  " << name;
                printf("[%d][%d]: ",i,j);
                cout << vec[i][j];
            }
            cout << '\n';
        }
    }
    template<class T> static void print_set(set<T> &st,const char* name) {
        int i = 0;
        for (auto itr = st.begin();itr != st.end(); ++itr,++i) {
            cout << "  " << name;
            printf("[%d]: ",i);
            cout << *itr;
        }
        cout << '\n';
    }

    template<class T1,class T2>
    static void print_map(map<T1,T2> &mp,const char* name) {
        for (auto p: mp) {
            cout << "  " << name << '[' << p.first << ']' << ": " << p.second;
        }
        cout << '\n';
    }
};

template<class T> T modpow(T N,long long K,long long mod = MOD) {
    T ret = 1;
    while (K > 0) {
        if (K&1) {
            ret *= N;
            ret %= mod;
        }
        K >>= 1;
        N *= N;
        N %= mod;
    }
    return ret;
}

int main() {
    int N; cin >> N;
    vector<ll> L(N); rep(i,N) cin >> L[i];
    vector<ll> R(N); rep(i,N) cin >> R[i];
    vector<ll> D(N + 1); rep(i,N) cin >> D[i + 1];
    D[0] = 0;
    bool plus = false;
    int zero = -1;
    bool nine = true;
    rep(i,N) {
        if (D[i + 1] == 0) {
            zero = i;
            nine = false;
            if (plus) {
                cout << 0 << endl;
                return 0;
            }
        }
        else if (D[i + 1] == 9) {
            D[i + 1] = 0;
            plus = true;
        }
        else {
            plus = true;
            nine = false;
        }
    }
    if (!plus) {
        cout << 1 << endl;
        return 0;
    }
    
    ll inv9 = modpow((ll)9,MOD - 2);
    //Debug::print_value(inv9,"inv9");
    vector<ll> dp(N + 1,0);
    dp[zero + 1] = 1;
    for (int i = zero + 1;i < N;++i) {
        ll x = (modpow((ll)10,R[i]) - modpow((ll)10,L[i]) + MOD)%MOD*inv9%MOD;
        //Debug::print_value(x,"x");
        rep(j,9) {
            if (j == 0) {
                if ((j + D[i])%9 == D[i + 1]) dp[i + 1] += dp[i] * (x + 1) % MOD;
            }
            else {
                if ((j + D[i])%9 == D[i + 1]) dp[i + 1] += dp[i] * x % MOD;
            }
            dp[i + 1] %= MOD;
        }
    }
    
    //Debug::print_vector(dp,"dp");
    if (nine) {
        dp[N] = (dp[N] - 1 + MOD)%MOD;
    }
    cout << dp[N] << endl;
    return 0;
}
0