语言入门
文章平均质量分 83
akxxsb
写写博客装装逼,存代码
展开
-
UVA 10878 Decode the tape
这绝对是我去UVA以后遇见的最坑的题,完全就是靠想象力。。。这题实际上是一道水题,就是用二进制表示ascll码,但要注意点前面的是从2的3次方开始的,字母o表示1,空格表示0。有两点不太明白,第一是解码后的字符串结尾加‘\0’后居然不能ac,第二是输出的时候不能输出回车。#include#includechar find(const char *s){ int base1=原创 2014-02-19 01:21:59 · 929 阅读 · 0 评论 -
UVA 123 Searching Quickly
题意:给出一系列要忽略的单词,这些单词以外的单词都看作关键字。然后给出一些标题,找出标题中所有的关键字,然后按这些关键字的字典序给标题排序。注意两点:相同关键字出现在不同标题中,出现在输入较前位置的标题排在前面(从样例数据可以看出,而且multimap也正是这么做的);同一个关键字在一个标题中出现多次,关键字位于较前位置的排在前面(从左向右扫描的话就没有问题)。#include#i原创 2014-04-27 00:22:01 · 3022 阅读 · 0 评论 -
LIGHTOJ 1005
A - LIGHTOJ 1005Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%lld & %lluSubmit StatusDescriptionA rook is a piece used in the game of chess which is played on a board原创 2014-03-26 19:19:40 · 1157 阅读 · 0 评论 -
LIGHTOJ 1027
应该是概率的题,还有最大公约数约分的问题。E - LIGHTOJ 1027Time Limit:2000MS Memory Limit:32768KB 64bit IO Format:%lld & %lluSubmit StatusDescriptionYou are in a maze; seeing n doors in fr原创 2014-03-26 20:10:39 · 1211 阅读 · 0 评论 -
UVA 10115 Automatic Editing
字符串处理题,需要注意的是要一直替换到没有所给的字符串为止,所以可以在change函数里返回1(代表查找成功)和0(代表没有要替换的字符了)Problem E: Automatic EditingSource file:autoedit.{c, cpp, java, pas}Input file:autoedit.inOutput fil原创 2014-03-23 23:56:22 · 1324 阅读 · 0 评论 -
UVA 10420 - List of Conquests
本题注意要查找一下输入的人的国家是否已经出现Problem BList of ConquestsInput: standard inputOutput: standard outputTime Limit: 2 secondsIn Act I, Leporello is telling Donna Elvira about his master's long list原创 2014-03-24 00:33:55 · 1561 阅读 · 0 评论 -
乱水2
C. 座位编号Time Limit: 1000msCase Time Limit: 1000msMemory Limit: 65536KB64-bit integer IO format: %lld Java class name: MainSubmit StatusFont Size: + -第十届北京师范大学原创 2014-03-16 17:28:55 · 1238 阅读 · 0 评论 -
乱水bnuoj
Current Server Time: 2014-03-16 15:41:22A B C D E F G H IB. Alkane or Alkene??Time Limit: 1000msCase Time Limit: 1000msMemory Limit: 65536KB64-bit integer IO format: %lld原创 2014-03-16 16:43:22 · 1327 阅读 · 0 评论 -
Mincost
http://t.cn/zjBp4jd FAQ http://t.cn/zjHKbmN Linux问题看http://t.cn/aWnP1n1031: Mincost时间限制: 1 Sec 内存限制: 128 MB提交: 303 解决: 88[提交][状态][讨论版]题目描述The cost of taking a taxi in Hangzho原创 2014-03-13 21:26:35 · 1692 阅读 · 0 评论 -
UVA 644 Immediate Decodability
判断前缀是否和某个字符串相同,不多说了直接上代码,uva的字符模拟终于要结束了啊啊,acm之路还很长希望自己和大家能坚持下去。#include#includechar isprefix(const char s[][12],int n)//判断前缀{ for(int i=0;i<n;i++) for(int j=i+1;j<n;j++) {原创 2014-02-19 18:50:42 · 857 阅读 · 0 评论 -
Codeforces Round #238 (Div. 2) B题
字符串处理题B. Domino Effecttime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputLittle Chris knows there's no f原创 2014-03-23 01:08:25 · 1777 阅读 · 0 评论