码迷,mamicode.com
首页 >  
搜索关键字:csu 快速幂取模    ( 786个结果
CSU1602: Needle Throwing Game(投针问题)
Description There are many parallel lines on the ground with the distance of D between each adjacent two. Now, throwing a needle randomly on the ground,please calculate the possibility of that the ...
分类:Windows程序   时间:2015-05-03 20:41:42    阅读次数:232
1601: War(并查集)
Description AME decided to destroy CH’s country. In CH’ country, There are N villages, which are numbered from 1 to N. We say two village A and B are connected, if and only if there is a road betwe...
分类:其他好文   时间:2015-05-03 20:38:31    阅读次数:149
模板 快速幂取模
【模板】快速幂取模 1 long long quickmod(long long a,long long b,long long m) 2 { 3 long long ans = 1; 4 while(b)//用一个循环从右到左便利b的所有二进制位 5 { 6 ...
分类:其他好文   时间:2015-05-03 10:36:17    阅读次数:169
水题集
刻苦练习CCF http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1585 就是旋转一下,找对应关系,注意这里枚举的顺序按原来顺序来,然后输出的时候把n和m的内外顺序换一下 #include int a[105][105],b[105][105]; int main(){ #ifndef ONLINE_JUDGE freopen("in....
分类:其他好文   时间:2015-05-03 09:24:07    阅读次数:106
1588: 合并果子
题目链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1588表示有完整的算法类代码,但是表示自己看不懂。具体的思路是第一次排序,后面充分利用第一次排序的结果,产生的第一个数插入到后边,通过这个方法来提高整体的效率。#include #inclu...
分类:其他好文   时间:2015-05-02 19:25:25    阅读次数:140
组合数打表法(1587: 爬楼梯)
这道题思路比较清晰,采用的方法是组合数打表法:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1587(1587: 爬楼梯)#include #define max 46using namespace std;long long c[max][max...
分类:其他好文   时间:2015-05-02 18:02:15    阅读次数:161
csuoj 1114: 平方根大搜索
http://acm.csu.edu.cn/OnlineJudge/problem.php?id=11141114: 平方根大搜索Time Limit:5 SecMemory Limit:128 MBSubmit:118Solved:60[Submit][Status][Web Board]Desc...
分类:其他好文   时间:2015-05-01 21:10:01    阅读次数:229
csuoj 1503: 点到圆弧的距离
http://acm.csu.edu.cn/OnlineJudge/problem.php?id=15031503: 点到圆弧的距离时间限制:1 Sec内存限制:128 MBSpecial Judge 提交:247解决:59 [提交][状态][讨论版]题目描述输入一个点P和一条圆弧(圆周的一部分),...
分类:其他好文   时间:2015-04-30 23:13:41    阅读次数:184
csuoj 1507: 超大型LED显示屏
http://acm.csu.edu.cn/OnlineJudge/problem.php?id=15071507: 超大型LED显示屏时间限制:1 Sec内存限制:128 MB 提交:124解决:61 [提交][状态][讨论版]题目描述输入输入包含不超过100组数据。每组数据第一行为"START ...
分类:其他好文   时间:2015-04-30 23:07:25    阅读次数:269
csuoj 1505: 酷酷的单词
http://acm.csu.edu.cn/OnlineJudge/problem.php?id=15051505: 酷酷的单词时间限制:1 Sec内存限制:128 MB 提交:340解决:135 [提交][状态][讨论版]题目描述输入一些仅由小写字母组成的单词。你的任务是统计有多少个单词是“酷”的...
分类:其他好文   时间:2015-04-30 23:03:24    阅读次数:219
786条   上一页 1 ... 54 55 56 57 58 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!