题解:CF2038N Fixing the Expression

Augenstern5

2024-11-20 13:18:20

Solution

考虑只将符号改对。这样如果符号本来就正确相当于没改,如果符号错误相当于只改一个字符,一定最优。

#include<bits/stdc++.h>
using namespace std;

int main(){
    int n;cin>>n;
    while(n--){
        string c;cin>>c;
        if(c[0]<c[2]) c[1]='<';
        if(c[0]>c[2]) c[1]='>';
        if(c[0]==c[2]) c[1]='=';
        cout<<c<<"\n";
    }
    return 0;
}