A. Petya and Strings

简介: A. Petya and Strings

题目链接

Problem - 112A - Codeforces


一些话


流程

题目说字符串长度相同,大小写无差别,要比字典序。因为直接比较的话大小写是会产生差别的,所以先要遍历字符串统一大小写,然后再比较即可。

套路

字符串字典序大小比较

直接使用大于小于号判断


ac代码

#include <iostream>
using namespace std;
int main(){
    string s1,s2;
    cin >> s1 >> s2;
    int cnt1=0,cnt2= 0;
    int l1 = s1.size(),l2 = s2.size();
    for(int i = s1.size() -1;i >= 0;i--){
        if(s1[i] >= 'a' && s1[i] <= 'z') s1[i] -= 'a' - 'A';
    }//没看长度
    for(int i = s2.size()-1;i >= 0;i--){
        if(s2[i] >= 'a' && s2[i] <= 'z') s2[i] -= 'a' - 'A';
    }
    if(s1 > s2) cout << 1 << endl;
    else if(s1 < s2) cout << -1 << endl;//字符串可以直接按照字典序比较,前提是长度相同
    else cout << 0 << endl;
    return 0;
}
目录
相关文章
CF112A Petya and Strings(转发大小字符)
CF112A Petya and Strings(转发大小字符)
45 0
|
安全 网络协议 Shell
社会工程学工具包(SET)的PDF文件钓鱼攻击
社会工程学工具包(SET)的PDF文件钓鱼攻击
222 0
|
SQL 前端开发 网络安全
[网络安全]DVWA之File Inclusion攻击姿势及解题详析合集
以下姿势均以本机环境为例 low level 在D:\Software\PHPStudy\phpstudy_pro\WWW路径写入1.php
113 0
Petya and Strings
Petya and Strings
73 0
Petya and Strings
|
安全 Windows
7-Zip 曝出零日安全漏洞!通过“模仿文件扩展名”向攻击者提供管理员权限
7-Zip 曝出零日安全漏洞!通过“模仿文件扩展名”向攻击者提供管理员权限
204 0
7-Zip 曝出零日安全漏洞!通过“模仿文件扩展名”向攻击者提供管理员权限
|
安全 数据安全/隐私保护
Petya最新进展之利用M.E.Doc后门
本文讲的是Petya最新进展之利用M.E.Doc后门,6月27日晚,乌克兰境内多个政府组织和重要企业的电脑遭遇恶意软件攻击,致使多地出网络中断和电脑故障,政府无法正常办公,企业无法正常运营
1418 0