Multiplication Puzzle Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 11466 Accepted: 7105 Time Limit: 1000MS Memory Limit: 65536K Total Su ...
分类:
其他好文 时间:
2018-01-30 23:06:42
阅读次数:
208
什么是矩阵链乘法(Matrix Chain Multiplication) 矩阵链乘法问题是指给定一串矩阵序列M?M2..Mn,求至少需要进行多少次乘法运算才能求得结果 比如对于这个M?M?M?的矩阵链, 我们可以先计算M?M?然后结果乘以M?,也可以M?M?先算,然后乘以M?,为了表达方便,可以用 ...
分类:
其他好文 时间:
2018-01-30 19:50:45
阅读次数:
143
【链接】 "我是链接,点我呀:)" 【题意】 在这里输入题意 【题解】 遍历i从1..n 看看x%i==0以及x/i 【代码】 cpp include using namespace std; int main() { int n,x; cin n x; int ans = 0; for (int ...
分类:
其他好文 时间:
2018-01-29 16:11:31
阅读次数:
153
Nearly every one have used the Multiplication Table. But could you find out the k-th smallest number quickly from the multiplication table? Given the ...
分类:
其他好文 时间:
2018-01-28 00:07:54
阅读次数:
183
题目大意: 给出a, b两个用字符串表示的虚数,求a*b 题目思路: 偷了个懒,Python3的正则表达式匹配了一下,当然acm里肯定是不行的 ...
分类:
其他好文 时间:
2018-01-19 14:22:15
阅读次数:
106
A multiplication game Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 6421 Accepted: 3225 Description Stan and Ollie play the game of multi ...
分类:
其他好文 时间:
2018-01-07 16:08:15
阅读次数:
178
A multiplication game POJ - 2505 题目大意:两个人轮流玩游戏,Stan先手,数字 p从1开始,Stan乘以一个2-9的数,然后Ollie再乘以一个2-9的数,直到谁先将p乘到p>=n时那个人就赢了,而且轮到某人时,某人必须乘以2-9的一个数。 ...
分类:
其他好文 时间:
2017-12-28 23:16:19
阅读次数:
148
Nearly every one have used the Multiplication Table. But could you find out the k-th smallest number quickly from the multiplication table? Given the ...
分类:
其他好文 时间:
2017-12-24 11:13:27
阅读次数:
105
http://poj.org/problem?id=2505 感觉博弈论只有找规律的印象已经在我心中埋下了种子。。。 题目大意:两个人轮流玩游戏,Stan先手,数字 p从1开始,Stan乘以一个2-9的数,然后Ollie再乘以一个2-9的数,直到谁先将p乘到p>=n时那个人就赢了,而且轮到某人时,某 ...
分类:
其他好文 时间:
2017-12-19 01:47:41
阅读次数:
218
Given two strings representing two complex numbers. You need to return a string representing their multiplication. Note i2 = -1 according to the defin ...
分类:
其他好文 时间:
2017-12-09 00:48:27
阅读次数:
215