結果

問題 No.2629 A replace B replace C
ユーザー GOTKAKOGOTKAKO
提出日時 2024-02-16 21:30:43
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 205,924 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-09-28 19:45:53
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    string s,t; cin >> s >> t;
    multiset<int,greater<int>> A,B;
    bool yes = true;
    for(int i=0; i<N; i++){
        if(s.at(i) == 'C'){
            if(t.at(i) == 'C') continue;
            else yes = false; break;
        }
        if(s.at(i) == 'B'){
            if(t.at(i) == 'B') continue;
            if(t.at(i) == 'A'){yes = false; break;}
            B.insert(1);
        }
        if(s.at(i) == 'A'){
            if(t.at(i) == 'A') continue;
            A.insert(t.at(i)-s.at(i));
        }
    }
    if(yes == false){cout << "No" << endl; return 0;}
    
    while(A.size() && B.size()){
        auto itr = A.begin(),itr2 = B.begin();
        if(*itr == 2) B.insert(1);
        A.erase(A.find(*A.begin())),B.erase(B.find(*B.begin())); 
    }
    if(A.size() || B.size()) cout << "No" << endl;
    else cout << "Yes" << endl; 
}
0