-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsi17c1p5.cpp
61 lines (61 loc) · 1.43 KB
/
si17c1p5.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Ivan Carvalho
// Solution to https://dmoj.ca/problem/si17c1p5
#include <bits/stdc++.h>
#define REP(A, B) for (int(A) = 0; (A) < (B); (A)++)
using namespace std;
typedef long long ll;
const int N = 2;
const ll MOD = ll(1e9);
struct matrix {
ll mat[N][N];
};
matrix multiplication(matrix A, matrix B) {
matrix C;
REP(i, N) {
REP(j, N) { C.mat[i][j] = 0; }
}
REP(i, N) {
REP(j, N) {
REP(k, N) {
C.mat[i][j] += A.mat[i][k] * B.mat[k][j];
C.mat[i][j] %= MOD;
}
}
}
return C;
}
matrix exponentation(ll pot, matrix base) {
matrix resp;
matrix exponenciada = base;
REP(i, N) {
REP(j, N) { resp.mat[i][j] = (i == j); }
}
for (ll i = 0; (1LL << i) <= pot; i++) {
if ((1LL << i) & pot) resp = multiplication(resp, exponenciada);
exponenciada = multiplication(exponenciada, exponenciada);
}
return resp;
}
int main() {
ll a, b, pown;
cin >> a >> b >> pown;
if (pown == 1) {
cout << b % MOD << endl;
return 0;
}
if (pown == 0) {
cout << a % MOD << endl;
return 0;
}
pown--;
matrix base;
base.mat[0][0] = 1;
base.mat[0][1] = 1;
base.mat[1][0] = 1;
base.mat[1][1] = 0;
matrix resp = exponentation(pown, base);
ll exibe = resp.mat[0][0] * b + resp.mat[0][1] * a;
exibe %= MOD;
printf("%lld\n", exibe);
return 0;
}