結果

問題 No.2441 行列累乗
ユーザー shobonvip
提出日時 2023-08-26 01:16:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,464 bytes
コンパイル時間 5,132 ms
コンパイル使用メモリ 249,504 KB
最終ジャッジ日時 2025-02-16 14:32:00
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

struct mat{
	ll v[2][2];
};

mat mul(mat a, mat b){
	mat ret;
	rep(i,0,2){
		rep(j,0,2){
			rep(k,0,2){
				ret.v[i][j] += a.v[i][k] * b.v[k][j];
			}
		}
	}
	return ret;
}

int main(){
	ll a, b, c, d; cin >> a >> b >> c >> d;
	mat v;
	v.v[0][0] = a;
	v.v[0][1] = b;
	v.v[1][0] = c;
	v.v[1][1] = d;
	mat w = mul(v, mul(v, v));
	cout << w.v[0][0] << ' ' << w.v[0][1] << '\n';
	cout << w.v[1][0] << ' ' << w.v[1][1] << '\n';
}

0