-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
50 lines (49 loc) · 1.12 KB
/
solution.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
/**
* 55 / 55 test cases passed.
* Runtime: 12 ms
* Memory Usage: 11.4 MB
*/
class Solution {
public:
const int mod = 1337;
int superPow(int a, vector<int>& b) {
if (b.empty()) return 1;
int last = b.back(); b.pop_back();
return quick_mod(a, last) % mod * quick_mod(superPow(a, b), 10) % mod;
}
size_t quick_mod(size_t x, int y) {
size_t ret = 1;
while (y) {
if (y & 1) ret = (ret * x) % mod;
x = x * x % mod;
y >>= 1;
}
return ret;
}
};
/**
* 55 / 55 test cases passed.
* Runtime: 8 ms
* Memory Usage: 11.4 MB
*/
class Solution2 {
public:
const int mod = 1337;
int superPow(int a, vector<int>& b) {
int ans = 1;
for (int i = b.size() - 1; i >= 0; --i) {
ans = ans * quick_mod(a, b[i]) % mod;
a = quick_mod(a, 10);
}
return ans;
}
size_t quick_mod(size_t x, int y) {
size_t ret = 1;
while (y) {
if (y & 1) ret = (ret * x) % mod;
x = x * x % mod;
y >>= 1;
}
return ret;
}
};