Could you please tell me some problems which could be solved using matrix exponentiation on codeforces or other judges ?
Thanks.
# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 159 |
4 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 150 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
Could you please tell me some problems which could be solved using matrix exponentiation on codeforces or other judges ?
Thanks.
Name |
---|
easy hard
if you want to solve the easy one you can guess it from first solutions. if you want to solve the hard one just listen to me here: you can represent a+b√k as 2x2 matrix [a b ; kb a] . the ; ends the first row and this way you can also make matrix multiplication faster as you need only O(n*n) good luck
http://codeforces.me/gym/100199, problem E
this problem is really good wow. also D in this gym can be solved if you know matrix multiplication. but in E here is a hint : if you are at row i how do you use row i-1 ? how do you know how many times did a certain pattern exist at the past row? why is m so little m<=5 ?
http://codeforces.me/contest/222/problem/E
There is a category for Matrix Exponentiation problems in lightoj. Here is the link , i hope it will be helpful. http://www.lightoj.com/volume_problemcategory.php?user_id=8956&category=Matrix%20Exponentiation
185A - Plant
https://www.hackerearth.com/problem/algorithm/abcd-strings/description/
http://codeforces.me/problemset/problem/166/E
1117D - Magic Gems
1106F Lunar New Year and a Recursive Sequence
1182E — Product Oriented Recurrence
Apart from the above mentioned problem, the following problems can also be solved by matrix exponentiation.
621E — Wet Shark and Blocks
147B — Smile House
Here you can read how LINK
http://acm.timus.ru/problem.aspx?space=1&num=1462