算法
SZStudy
这个作者很懒,什么都没留下…
展开
-
UVa10082 WERTYU
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1023 题目大意:按照键盘排位,将输入的文本,替换为键盘左边一个,例如,O的左边是I。 #include<stdio.h> char s[]="...原创 2018-09-08 21:52:28 · 297 阅读 · 0 评论 -
UVa401 - Palindromes
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=342 题目大意:判断输入的字符串是否为回文串(字符串反转之后和原串相同,例如abba,madam)以及镜像串(A的镜像是A,E的镜像是3)。每个字符串的镜像如表所...原创 2018-09-08 22:16:56 · 339 阅读 · 0 评论 -
UVa1583 - Digit Generator
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4458 题目大意:如果x加上x的各个数字之后得到y,就说x是y的生成元。给出n,求最小生成元。 #include<stdio.h> #include&...原创 2018-09-11 23:22:50 · 351 阅读 · 0 评论 -
UVa272 - TEX Quotes
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=208 题目大意:输入的句子包含以"开头和结尾的句子,请把它们替换成以``开头,以''结尾 #include<stdio.h> #includ...原创 2018-09-05 22:50:35 · 328 阅读 · 0 评论 -
UVa1584 - Circular Sequence
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4459 题目大意:长度为n的环状串有n中表示方法,分别从某个位置顺时针得到,输出该环串的“最小表示”(按字典序列)。 #include<stdio.h>...原创 2018-09-12 23:53:38 · 330 阅读 · 0 评论 -
UVa1586 - Molar mass
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=448&page=show_problem&problem=4461 题目大意:给出一种物质的分子式(不带括号),求分子量。只包换4种原子,C,H,O,N,原子量分别为12.01,1.0...原创 2018-09-17 21:38:58 · 287 阅读 · 0 评论 -
UVa1225 - Digit Counting
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=247&page=show_problem&problem=3666 题目大意:把前n个整数顺次写在一起:123456789101112...数一数0-9各出现多少次。 #include&l...原创 2018-09-18 00:56:37 · 249 阅读 · 0 评论 -
UVa340 - Master-Mind Hints
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=276 题目大意:实现一个经典“猜数字”游戏。给定答案序列和用户猜的序列,统计有多少数字位置正确(A),有多少数字在两个序列都出现过但位置不对(...原创 2018-09-11 00:10:24 · 189 阅读 · 0 评论 -
UVa1585 - Score
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=448&page=show_problem&problem=4460 题目大意:给出一个O和X组成的串,统计得分。每个O连续的得分为目前连续出现的O的个数,X的得分为0。 #include&...原创 2018-09-14 23:59:30 · 427 阅读 · 0 评论