解题思路:
STL大法好,用string存储字符串,利用贪心的思路,每次尽量让输出的字母字典排序更高。
首先用string类存储字符串。
每次输出前先判断字符串前两位数字是否在[1,26]的区间中
(1)不在[1,26]中,那么我们只能输出字符串第一个数字对应的字母
(2)如果在[1,26]中,我们不能简单得输出这两位数字对应的字母,因为如果输出过后下一位数字是0,则无法找到对应的字母
因此需要对此进行判断
注意事项:
参考代码:
#pragma GCC optimize(1) #pragma GCC optimize(2) #pragma GCC optimize(3,"Ofast","inline") //以上是O2优化,担心STL时间会爆掉 #include<iostream> #include<string> using namespace std; int main() { string s; cin >> s; while (s.length() != 0) { if (s.length() < 2) { char ch = 64 + stoi(s.substr(0, 1)); cout << ch; s.erase(0,1);//从下标0开始删除1位 continue; } if (stoi(s.substr(0, 2)) > 26) { char ch = 64 + stoi(s.substr(0,1)); cout << ch; s.erase(0,1); continue; } else { if (s[2] == '0') { char ch = 64 + stoi(s.substr(0, 1)); cout << ch; s.erase(0,1); continue; } else { char ch = 64 + stoi(s.substr(0, 2)); cout << ch; s.erase(0, 2);//从小标0开始删除两位 continue; } } } return 0; }
0.0分
3 人评分
请问这个代码为什么只有30 #include<stdio.h> #include<string.h> void main(){ char zm[27]={'0','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'}; char sz[200001]; int len,i,m,n,sum; scanf("%s",&sz); len=strlen(sz); for(i=0;i<len;i++) { m=0; n=0; sum=0; m=sz[i]; n=sz[i+1]; m-=48; n-=48; sum=m*10+n; if(sum>26) { printf("%c",zm[m]); } else { printf("%c",zm[sum]); i++; } } }
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:443 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
兰顿蚂蚁 (C++代码)浏览:1160 |
【简单计算】 (C语言代码)浏览:642 |
wu-理财计划 (C++代码)浏览:907 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
校门外的树 (C语言代码)浏览:733 |
简单的a+b (C语言代码)浏览:626 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |