洛谷P1012 拼数 string

本文介绍了一种利用字符串拼接和字典序比较的方法解决竞赛题目的技巧。通过比较a+b与b+a来确定两个字符串的先后顺序,最终实现字符串数组的正确排序并输出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

又是大水题...

这一题过水,令人无法接受。。。。。。

但是如果我们不知道string的一个神奇的性质的话,就会很难受。

我一开始手写 < 号,但是发现如果 string a 的前一部分恰好是 string b 时,就不好处。于是我跑去看题解,发现大佬们的神奇做法:

a + b > b + a

666啊!

下面讲解关于string的 + 和 < 运算符:

+ : 把两个字符串拼起来。

< : 字典序比较。

这两组数据可以卡掉a > b

37 3

30 3

然后我们就水 啊 水 啊 水 过 了

 

 1 #include <cstdio>
 2 #include <iostream>
 3 #include <algorithm>
 4 using namespace std;
 5 const int N = 21;
 6 bool cmp(string a, string b) {
 7     return a + b > b + a;
 8 }
 9 
10 int main() {
11     string a[N];
12     int n;
13     scanf("%d", &n);
14     for(int i = 1; i <= n; i++) {
15         cin >> a[i];
16     }
17     sort(a + 1, a + n + 1, cmp);
18     for(int i = 1; i <= n; i++) {
19         cout << a[i];
20     }
21     return 0;
22 }
AC代码:

 

转载于:https://www.cnblogs.com/huyufeifei/p/8980745.html

### 关于 P1833 题目解析 P1833 是一道关于字符串处理的题,具体来说是要求统计一段文字中不同单词的量。为了高效解决这个题,可以采用哈希表来记录各个单词出现的情况。 #### Python 实现方案 下面是一个基于Python实现的解决方案: ```python from collections import defaultdict def count_distinct_words(text): word_count = defaultdict(int) words = text.split() for word in words: cleaned_word = ''.join(filter(str.isalnum, word)).lower() # 清洗并转换成小写 if cleaned_word: word_count[cleaned_word] += 1 distinct_word_count = sum(1 for count in word_count.values() if count > 0) return distinct_word_count if __name__ == "__main__": input_text = input().strip() result = count_distinct_words(input_text) print(result) ``` 此程序首先读取输入的一段文本,接着通过`split()`函分割这段文本成为单个词语列表;之后遍历这些词项,并利用正则表达式去除标点符号以及将其统一转为小写字母形式以便比较相同词汇的不同大小写的版本;最后统计去重后的唯一单词量并输出结果[^1]。 #### C++ 实现方案 同样地,在C++中也可以采取类似的思路解决题: ```cpp #include <iostream> #include <sstream> #include <map> #include <cctype> using namespace std; int main(){ string line; getline(cin,line); map<string,int> mp; stringstream ss(line); string s; while(ss >> s){ string temp = ""; for(auto ch : s){ if(isalpha(ch)){ temp+=tolower(ch); } } if(!temp.empty()){ ++mp[temp]; } } cout << mp.size()<< endl; } ``` 上述代码实现了同样的逻辑——接收一整行作为输入,使用stringstream按空格分隔单词,清理掉非字母字符并将它们全部变为小写后存入映射容器内计,最终打印出独一无二的键值目即为所求答案[^2]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值