E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Mathmen
Mathmen
、Codeforces Round #750 (Div. 2)
昨天的一道题,
Mathmen
。
Mathmen
(贪心,二分)题意:给定n个位置,和m个船只,要从一个位置到后面一个位置挨个走。每只船只都有两种属性:行驶距离和花费。
小酒窝.
·
2022-03-20 00:23
每日刷题
1024程序员节
第二届山东ACM省赛 Crack
Mathmen
#include#include#include#include#include#includeusingnamespacestd;//快速幂inta[10009];constintmod=997;intpow_quick(intx,intn){intsum=1;while(n){if(n%2)sum=sum*x%mod;x=x*x%mod;n/=2;}returnsum;}intmain(){i
但求-_-心安
·
2017-04-28 13:16
山东省第二届ACM省赛
山东省第二届ACM大学生程序设计竞赛 Crack
Mathmen
打表 模拟
CrackMathmenTimeLimit:1000ms Memorylimit:65536K 有疑问?点这里^_^题目描述 Sincemathmentakesecurityveryseriously,theycommunicateinencrypted messages.Theyciphertheirtextsinthisway:foreverycharacthercinthe messag
zp___waj
·
2016-05-03 20:00
C++
SDUT 2168
Mathmen
(贪心)
大意:一个数轴上有n点,然后m行,为m个船的行驶距离和耗费。问能不能经过所有的点。 思路:判断大于等于当前的两岛间的距离,的最小的距离就是最优的。 #include #include #defineLLlonglong usingnamespacestd; LLarr[1000010],dis[1000010]; structnode{ LLd,w; }q[1000000]; boolcmp(n
Grit_ICPC
·
2016-05-02 23:00
贪心
SDUT 2165 Crack
Mathmen
(快速幂)山东省第二届ACM大学生程序设计竞赛
CrackMathmenTimeLimit:1000MSMemorylimit:65536K题目描述 Sincemathmentakesecurityveryseriously,theycommunicateinencrypted messages.Theyciphertheirtextsinthisway:foreverycharacthercinthe message,theyreplacec
llwwlql
·
2016-04-25 07:00
sdut 2165:Crack
Mathmen
(第二届山东省省赛原题,数论)
Crack
Mathmen
Time Limit: 1000ms Memory limit: 65536K 有疑问?
·
2015-11-11 17:23
rack
Sdut 2165 Crack
Mathmen
(数论)(山东省ACM第二届省赛E 题)
Crack
Mathmen
TimeLimit: 1000ms Memory limit: 65536K 有疑问?
·
2015-11-11 15:57
rack
Sdut 2165 Crack
Mathmen
(数论)(山东省ACM第二届省赛E 题)
Crack
Mathmen
TimeLimit: 1000ms Memory limit: 65536K 有疑问?
·
2015-11-11 08:29
rack
sdut 2168
Mathmen
优先队列处理区间问题
题意: 给你n个地点的位置,他们是从小到大的顺序,然后每个位置都会有m个飞船,每个飞船能够传送一定的距离,如果使用该飞船会消耗掉一定的IQ,问如果一个人从1号位置开始选择飞船到达n号位置,最少的IQ花费是多少? 思路: 对于i位置与i+1位置,我们只要找出m个飞船中传送距离ds大于x[i + 1] - x[i]的花费IQ最少的即可。可是如何维护大于x[i + 1] - x[i]这个区间的里面
·
2015-11-02 11:51
Math
第二届山东省ACM省赛回顾 Crack
Mathmen
(打表)
CrackMathmen题目链接:http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2165TimeLimit:1000ms Memorylimit:65536K 有疑问?点这里^_^题目描述 Sincemathmentakesecurityveryseriously,theycommunicatein
chaiwenjun000
·
2015-05-01 10:00
模拟
ACM
省赛回顾
SDUTOJ2165 Crack
Mathmen
(模拟,哈希表,快速幂)
题目连接:传送门 这一题是我们昨天省赛集训的题目,我可给坑惨了。不过所幸没有给白坑,学到了一些东西。最有感触的是这个for(inti=0;i #include #include #defineMOD997 #defineMAXN1000000+100 structN{ intx; charc; }List_char[62];//用结构体将字符,与其对应的加密后的文本存进结构体数组 ch
luomingjun12315
·
2015-04-30 08:00
模拟
hash
快速幂
sdut2168--
Mathmen
(贪心)
MathmenTimeLimit:1000MSMemorylimit:65536K题目描述Mathmenlovemathematics,andtheyliveonthenumberline.Allthemathmenspendalltheirtimeonsolvingmathematicalproblemsandprovingtheorems.Likehumenbeings,mathmendon'
u013015642
·
2015-04-06 10:00
sdut2165 Crack
Mathmen
(山东省第二届ACM省赛)
本文出自:http://blog.csdn.net/svitter,转载请注明出处。原题:点击打开链接和晨阳哥一同讨论了一下这个题目==终于在今晚AC了。这个题目可以说是RSA加密算法的变种。。考虑997是素数,那么符合欧拉定理,然后想到费马小定理m^996MOD997=1;因为一般的RSA解密算法都是C^dmod997=m这种形式,苦思冥想了好久解密算法,仍然没有得到解决。最后终于大彻大悟的明白
svtter
·
2014-10-17 23:00
C++
c
算法
加密
编程语言
[2011山东省第二届ACM大学生程序设计竞赛]——
Mathmen
MathmenTimeLimit:1000msMemorylimit:65536K有疑问?点这里^_^题目:http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2168题目描述Mathmenlovemathematics,andtheyliveonthenumberline.Allthemathmenspen
lx417147512
·
2014-04-24 13:00
ACM
贪心
山东省赛
Mathmen
[2011山东省第二届ACM大学生程序设计竞赛]——Crack
Mathmen
CrackMathmen题目:http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2165TimeLimit:1000msMemorylimit:65536K 题目描述Sincemathmentakesecurityveryseriously,theycommunicateinencryptedmessage
lx417147512
·
2014-04-24 09:00
crack
省赛
Mathmen
密码串
上一页
1
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他