首页 > 代码库 > POJ 3438 Look and Say(水题)
POJ 3438 Look and Say(水题)
【题意简述】:就是说一串数字,现在让我们换一种方式去描述它,用该数字的个数和数字本身去重新描述这串数字。
【分析】:简单模拟一下。
//248k 641ms #include<iostream> using namespace std; int main() { int t; char digits[1001]; cin>>t; while(t--) { cin>>digits; int len = strlen(digits); int count = 1; for(int i = 0;i<len;i++) { if(digits[i] == digits[i+1]) count++; else{ cout<<count<<digits[i]; count = 1; } } cout<<endl; } return 0; }
POJ 3438 Look and Say(水题)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。