結果

問題 No.2629 A replace B replace C
ユーザー twooimp2twooimp2
提出日時 2024-02-17 00:10:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,046 bytes
コンパイル時間 7,835 ms
コンパイル使用メモリ 306,184 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-02-17 00:10:56
合計ジャッジ時間 10,090 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,676 KB
testcase_01 AC 15 ms
7,168 KB
testcase_02 AC 15 ms
6,784 KB
testcase_03 AC 25 ms
8,492 KB
testcase_04 AC 6 ms
6,676 KB
testcase_05 AC 11 ms
6,676 KB
testcase_06 AC 5 ms
6,676 KB
testcase_07 AC 16 ms
6,676 KB
testcase_08 AC 15 ms
6,676 KB
testcase_09 AC 21 ms
8,064 KB
testcase_10 AC 20 ms
7,680 KB
testcase_11 AC 25 ms
8,448 KB
testcase_12 AC 27 ms
8,704 KB
testcase_13 AC 13 ms
6,676 KB
testcase_14 AC 21 ms
7,936 KB
testcase_15 AC 19 ms
7,936 KB
testcase_16 AC 17 ms
6,676 KB
testcase_17 AC 16 ms
6,676 KB
testcase_18 AC 12 ms
6,676 KB
testcase_19 AC 8 ms
6,676 KB
testcase_20 AC 9 ms
6,676 KB
testcase_21 AC 17 ms
7,424 KB
testcase_22 AC 14 ms
7,040 KB
testcase_23 AC 20 ms
7,168 KB
testcase_24 AC 17 ms
6,676 KB
testcase_25 AC 15 ms
7,040 KB
testcase_26 AC 11 ms
6,676 KB
testcase_27 AC 13 ms
6,676 KB
testcase_28 AC 16 ms
7,168 KB
testcase_29 AC 7 ms
6,676 KB
testcase_30 AC 9 ms
6,676 KB
testcase_31 AC 19 ms
7,296 KB
testcase_32 AC 15 ms
6,676 KB
testcase_33 AC 13 ms
6,676 KB
testcase_34 AC 12 ms
6,676 KB
testcase_35 AC 13 ms
6,676 KB
testcase_36 AC 12 ms
6,676 KB
testcase_37 AC 20 ms
7,472 KB
testcase_38 AC 18 ms
6,676 KB
testcase_39 AC 6 ms
6,676 KB
testcase_40 AC 12 ms
6,676 KB
testcase_41 AC 14 ms
6,676 KB
testcase_42 AC 20 ms
7,680 KB
testcase_43 AC 17 ms
7,168 KB
testcase_44 AC 15 ms
6,676 KB
testcase_45 AC 20 ms
8,064 KB
testcase_46 AC 19 ms
7,016 KB
testcase_47 AC 13 ms
6,676 KB
testcase_48 AC 13 ms
6,676 KB
testcase_49 AC 7 ms
6,676 KB
testcase_50 AC 24 ms
8,064 KB
testcase_51 AC 19 ms
7,296 KB
testcase_52 AC 11 ms
6,676 KB
testcase_53 AC 4 ms
6,676 KB
testcase_54 AC 6 ms
6,676 KB
testcase_55 AC 6 ms
6,676 KB
testcase_56 AC 5 ms
6,676 KB
testcase_57 AC 21 ms
7,424 KB
testcase_58 AC 8 ms
6,676 KB
testcase_59 AC 18 ms
7,168 KB
testcase_60 AC 10 ms
6,676 KB
testcase_61 AC 2 ms
6,676 KB
testcase_62 AC 2 ms
6,676 KB
testcase_63 AC 2 ms
6,676 KB
testcase_64 AC 2 ms
6,676 KB
testcase_65 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using P=pair<ll,ll>;

void IO(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
}

int main(){
  IO();
  ll n;
  cin>>n;
  string s;
  cin>>s;
  string t;
  cin>>t;
  set<P> ab,bc;
  for(ll i=0;i<n;i++){
    if(s[i]=='A'&&t[i]!='A'){
      ab.insert(P(t[i]-s[i],i));
    }else if(s[i]=='B'&&t[i]=='C'){
      bc.insert(P(t[i]-s[i],i));
    }
  }
  
  while(ab.size()&&bc.size()){
    auto itr1=prev(ab.end());
    auto itr2=prev(bc.end());
    ll idx1=(*itr1).second;
    ll idx2=(*itr2).second;
    s[idx1]='B';
    s[idx2]='C';
    ab.erase(itr1);
    bc.erase(itr2);
    if(s[idx1]!=t[idx1]){
      bc.insert(P(1,idx1));
    }
  }
  bool ok=true;
  for(ll i=0;i<n;i++){
    if(s[i]!=t[i]){
      ok=false;
    }
  }
  if(ab.size()||bc.size()){
    ok=false;
  }
  if(ok){
    cout<<"Yes"<<endl;
  }else{
    cout<<"No"<<endl;
  }
}
0