結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N;
	cin >> N;
	string s, t;
	cin >> s >> t;
	auto cc = [](char c) -> int {
		return c - 'A';
	};
	int cnt[] = {0, 0, 0};
	for (int i = 0; i < N; i ++) {
		int c1 = cc(s[i]), c2 = cc(t[i]);
		if (c1 > c2) {
			puts("No");
			return 0;
		}
		if (c1 != c2) {
			int id = (c1 == 1 ? 1 : (c2 == 1 ? 0 : 2));
			cnt[id] ++;
		}
	}
	if (cnt[2]) {
		cout << (cnt[0] && (cnt[0] == cnt[1]) ? "Yes" : "No") << endl;
	} else {
		cout << (cnt[0] == cnt[1] ? "Yes" : "No") << endl;
	}
}
0