結果

問題 No.2629 A replace B replace C
ユーザー maksim
提出日時 2024-02-16 23:43:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 1,708 ms
コンパイル使用メモリ 167,740 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-28 22:43:37
合計ジャッジ時間 3,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
#define app push_back
#define all(x) (x).begin(),(x).end()
#ifdef LOCAL
#define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__)
#else
#define debug(...)
#endif
#ifdef LOCAL
#define __int128 long long
#endif // LOCAL
const int inf=1e18;
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int n;cin>>n;string s,t;cin>>s>>t;
    int c[3]={0};
    for(int i=0;i<n;++i)
    {
        if(s[i]==t[i]) continue;
        if(t[i]==s[i]+1) {++c[s[i]-'A'];}
        else if(t[i]==s[i]+2) {++c[2];}
        else {cout<<"No";return 0;}
    }
    if(accumulate(c,c+3,0LL)==0) {cout<<"Yes";return 0;}
    if(c[0]!=c[1]) {cout<<"No";return 0;}
    if(c[2] && !c[0] && !c[1]) {cout<<"No";return 0;}
    cout<<"Yes";
    return 0;
}
0