結果

問題 No.1105 Many Triplets
ユーザー suzuken_wsuzuken_w
提出日時 2020-07-11 01:22:05
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 5,636 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 217,228 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-20 03:26:48
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#pragma GCC optimize("O3")
#include<bits/stdc++.h> 
using namespace std;
using ll=long long;
using P=pair<ll,ll>;
template<class T> using V=vector<T>; 
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
const ll inf=(1e18);
//const ll mod=998244353;
const ll mod=1000000007;
ll GCD(ll a,ll b) {return b ? GCD(b,a%b):a;}
ll LCM(ll c,ll d){return c/GCD(c,d)*d;}
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
struct mint{
    using ull=unsigned long long int;
    ull v;
    mint(ll vv=0){s(vv%mod+mod);}
    mint& s(ull vv){
        v=vv<mod?vv:vv-mod;
        return *this;
    }
    //オーバーロード
    mint operator-()const{return mint()-*this;}//mint型にキャスト
    mint&operator+=(const mint&val){return s(v+val.v);}
    mint&operator-=(const mint&val){return s(v+mod-val.v);}
    mint&operator*=(const mint&val){
        v=ull(v)*val.v%mod;
        return *this;
    }
    mint&operator/=(const mint&val){return *this*=val.inv();}
    mint operator+(const mint&val){return mint(*this)+=val;}
    mint operator-(const mint&val){return mint(*this)-=val;}
    mint operator*(const mint&val){return mint(*this)*=val;}
    mint operator/(const mint&val){return mint(*this)/=val;}
    mint pow(ll n)const{
        mint res(1),x(*this);
        while(n){
            if(n&1)res*=x;
            x*=x;
            n>>=1;
        }
        return res;
    }
    mint inv()const{return pow(mod-2);}
    //拡張ユークリッドの互除法
    /* mint inv()const{
        int x,y;
        int g=extgcd(v,mod,x,y);
        assert(g==1);
        if(x<0)x+=mod;
        return mint(x);
    }*/
    friend ostream& operator<<(ostream&os,const mint&val){
        return os<<val.v;
    }//出力
    bool operator<(const mint&val)const{return v<val.v;}
    bool operator==(const mint&val)const{return v==val.v;}
    bool operator>(const mint&val)const{return v>val.v;}
};
template<class T> struct Matrix{
    vector<vector<T>> A;

    Matrix() {}
    Matrix(size_t n,size_t m):A(n,vector<T>(m,0)) {}
    Matrix(size_t n):A(n,vector<T>(n,0)) {}

    size_t height() const{return (A.size());}
    size_t width() const{return (A[0].size());}
    inline const vector<T> &operator[](int k)const{return (A.at(k));}
    inline vector<T> &operator[](int k){return (A.at(k));}

   //単位行列
    static Matrix I(size_t n){
        Matrix mat(n);
        for(int i=0;i<n;i++)mat[i][i]=(T)(1);
        return mat;
    }

    Matrix &operator+=(const Matrix &B){
        size_t n=height(),m=width();
        assert(n==B.height()&&m==B.width());
        for(int i=0;i<n;i++){
            for(int j=0;j<m;j++){
                (*this)[i][j]+=B[i][j];
            }
        }
        return (*this);
    }
    Matrix &operator-=(const Matrix &B){
        size_t n=height(),m=width();
        assert(n==B.height()&&m==B.width());
        for(int i=0;i<n;i++){
            for(int j=0;j<m;j++){
                (*this)[i][j]-=B[i][j];
            }
        }
        return (*this);
    }
    Matrix &operator*=(const Matrix &B){
        size_t n=height(),m=B.width(),w=height();
        assert(w==B.height());
        vector<vector<T>> C(n,vector<T>(m,0));
        for(int i=0;i<n;i++){
            for(int j=0;j<m;j++){
                for(int k=0;k<w;k++){
                    C[i][j]+=(*this)[i][k]*B[k][j];
                }
            }
        }
        A.swap(C);
        return (*this);
    }

    //累乗計算
    Matrix &operator^=(long long k){
        Matrix B=Matrix::I(height());
        while(k>0){
            if(k&1){
                B*=(*this);
            }
            (*this)*=(*this);
            k>>=1ll;
        }
        A.swap(B.A);
        return (*this);
    }

    Matrix operator+(const Matrix &B)const{return (Matrix(*this)+=B);}
    Matrix operator-(const Matrix &B)const{return (Matrix(*this)-=B);}
    Matrix operator*(const Matrix &B)const{return (Matrix(*this)*=B);}
    Matrix operator^(const long long k)const{return (Matrix(*this)^=k);}

    friend ostream &operator<<(ostream &os,Matrix &mat){
        size_t n=mat.height(),m=mat.width();
        for(int i=0;i<n;i++){
            os<<"[";
            for(int j=0;j<m;j++){
                os<<mat[i][j]<<(j+1==m?"]\n":",");
            }
        }
        return (os);
    }

    //行列式
    T det(){
        Matrix B(*this);
        assert(height()==width());
        T ret=(T)(1);
        for(int i=0;i<width();i++){
            int idx=-1;
            for(int j=i;j<width();j++){
                if(B[j][i]!=0)idx=j;
            }
            if(idx==-1)return (T)(0);
            if(i!=idx){
                ret*=(T)(-1);
                swap(B[i],B[idx]);
            }
            ret*=B[i][i];
            T v=B[i][i];
            for(int j=0;j<width();j++){
                B[i][j]/=v;
            }
            for(int j=i+1;j<width();j++){
                T a=B[j][i];
                for(int k=0;k<width();k++){
                    B[j][k]-=B[i][k]*a;
                }
            }
        }
        return (ret);
    }
};
int main(){
  ll n,a,b,c;
  cin>>n>>a>>b>>c;
  Matrix<mint> mat(3),res(3,1);
  mat[0][0]=mint(1);
  mat[0][1]=-mint(1);
  mat[1][1]=mint(1);
  mat[1][2]=-mint(1);
  mat[2][0]=-mint(1);
  mat[2][2]=mint(1);
  res[0][0]=mint(a);
  res[1][0]=mint(b);
  res[2][0]=mint(c);
  mat^=(n-1);
  mat*=res;
  cout<<mat[0][0]<<" "<<mat[1][0]<<" "<<mat[2][0]<<"\n";
}
0