- 博客(14)
- 收藏
- 关注
sicily1010. Zipper
1010. Zipper Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Given three strings, you are to determine whether the third string can be formed by combining the characters in th...
2013-08-18 08:57:52 112
原创 sicily1625. Binary Clock
1625. Binary Clock Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description A binary clock is a clock which displays traditional sexagesimal time (military format) in a binary fo...
2013-06-06 20:17:06 117
原创 sicily1155. Can I Post the lette
1155. Can I Post the lette Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description I am a traveler. I want to post a letter to Merlin. But because there are so many roads I can ...
2013-05-30 21:55:28 161
原创 sicily1198. Substring
1198. Substring Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Dr lee cuts a string S into N pieces,s[1],…,s[N]. Now, Dr lee gives you these N sub-strings: s[1],…s[...
2013-05-30 21:55:03 97
sicily1007. To and Fro
1007. To and Fro Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Mo and Larry have devised a way of encrypting messages. They first decide secretly on the number of columns an...
2013-05-28 13:51:45 129
sicily1122. Prerequisites?
1122. Prerequisites? Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Freddie the frosh has chosen to take k courses. To meet the degree requirements, he must take courses f...
2013-05-28 13:46:34 155
原创 sicily1703. Obstacle Course
一道很典型的最短路径的题目。 算法的思想来自于Dijkstra(迪杰斯特拉)算法,大家在这里对这个算法就不介绍了。 可以在学完最短经的算法后,用这道题目当做练手。。我的算法还需要优化一下,代码也需要优化,因为我的代码确实有点乱。。下面的代码仅供参考。。 题目的链接:http://soj.me/1703 #includ...
2013-05-28 13:40:59 95
原创 sicily1825. Nickname
其实,这道题目的意思简单的。 大概的意思就是,把找到每一个字符串出现的次数,然后,按照字典顺序把字符串和出现的次数依次输出来。。 题目的链接: http://soj.me/1825 下面是我的代码,还有优化的需要,通过的时间为2.3S,题目限定的时间为3S #include <iostream> ...
2013-05-28 13:40:29 103
原创 sicily1321. Robot
1321. Robot Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Karell Incorporated has designed a new exploration robot that has the ability to explore new terrains, this new rob...
2013-05-27 08:44:24 139
原创 sicily1940. Ordering Tasks
1940. Ordering Tasks Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description John has n tasks to do. Unfortunately, the tasks are not independent and the execution of one task is onl...
2013-05-27 08:43:47 117
原创 sicily6135. Blackjack
鉴于这道题目的数据量并不大,所以,暴力解决就可以啦。。 所谓暴力,也就说,三重循环。。 题目的链接: http://soj.me/6135 #include <iostream> #include <stdio.h> using namespace std; int main() { int n, m; int count = 1...
2013-05-26 13:43:25 169
sicily7911. Windows
这道题目,其实不用怎么想,数据有大,不过一次遍历搜索就可以完成。 首先读入数据,储存在数组中,然后从数组的尾部向前面搜索判断,就可以了。。 #include <iostream> #include <stdio.h> using namespace std; int main() { int t; int n, ...
2013-05-26 11:49:36 89
sicily1134. 积木分发
#include <iostream> using namespace std; class child { public: child(){} int have; int need; }; int main() { int num, sum; while (true) { cin >> num ...
2013-05-26 10:20:04 164
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人