結果
問題 | No.675 ドットちゃんたち |
ユーザー | はまやんはまやん |
提出日時 | 2018-04-13 23:02:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 99 ms / 2,000 ms |
コード長 | 3,269 bytes |
コンパイル時間 | 1,915 ms |
コンパイル使用メモリ | 181,652 KB |
実行使用メモリ | 6,144 KB |
最終ジャッジ日時 | 2024-06-26 21:52:30 |
合計ジャッジ時間 | 3,753 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 88 ms
5,632 KB |
testcase_06 | AC | 99 ms
6,016 KB |
testcase_07 | AC | 88 ms
5,760 KB |
testcase_08 | AC | 93 ms
5,888 KB |
testcase_09 | AC | 98 ms
6,144 KB |
testcase_10 | AC | 97 ms
6,016 KB |
testcase_11 | AC | 97 ms
6,016 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() #pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; 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 (b<a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- using TN = ll; using Vec = vector<TN>; using Mat = vector<Vec>; Vec mulMatVec(Mat a, Vec b) { int n = b.size(); Vec ret(n, 0); rep(i, 0, n) rep(j, 0, n) ret[i] = ret[i] + a[i][j] * b[j]; return ret; } Vec mulVecMat(Vec a, Mat b) { int n = b.size(); Vec ret(n, 0); rep(i, 0, n) rep(j, 0, n) ret[i] = ret[i] + a[j] * b[j][i]; return ret; } Mat mulMatMat(Mat a, Mat b) { int n = a.size(); Mat ret(n, Vec(n, 0)); rep(i, 0, n) rep(j, 0, n) rep(k, 0, n) ret[i][j] = ret[i][j] + a[i][k] * b[k][j]; return ret; } Mat fastpow(Mat x, ll n) { Mat ret(x.size(), Vec(x.size(), 0)); rep(i, 0, x.size()) ret[i][i] = 1; while (0 < n) { if ((n % 2) == 0) { x = mulMatMat(x, x); n >>= 1; } else { ret = mulMatMat(ret, x); --n; } } return ret; } void printVec(Vec a) { cout << "[\t"; rep(i, 0, a.size()) cout << a[i] << "\t"; cout << "]" << endl; } void printMat(Mat a) { rep(i, 0, a.size()) printVec(a[i]); } /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int N, PX, PY, A[101010], B[101010]; ll ansx[101010], ansy[101010]; //--------------------------------------------------------------------------------------------------- void _main() { cin >> N >> PX >> PY; rep(i, 0, N) { cin >> A[i]; if (A[i] != 3) cin >> B[i]; } Mat m(3, Vec(3, 0)); rep(i, 0, 3) m[i][i] = 1; rrep(i, N - 1, 0) { Vec v(3, 0); v[0] = PX; v[1] = PY; v[2] = 1; Mat mm(3, Vec(3, 0)); if (A[i] == 1) { mm[0][0] = 1; mm[0][2] = B[i]; mm[1][1] = 1; mm[2][2] = 1; } else if (A[i] == 2) { mm[0][0] = 1; mm[1][1] = 1; mm[1][2] = B[i]; mm[2][2] = 1; } else { mm[0][0] = 0; mm[0][1] = 1; mm[1][0] = -1; mm[1][1] = 0; mm[2][2] = 1; } m = mulMatMat(m, mm); v = mulMatVec(m, v); ansx[i] = v[0]; ansy[i] = v[1]; } rep(i, 0, N) printf("%lld %lld\n", ansx[i], ansy[i]); }