# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100746 | dalgerok | Igra (COCI17_igra) | C++17 | 3 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int cnt1[3], cnt2[3];
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n;
cin >> n;
string s, t;
cin >> s >> t;
for(int i = 0; i < n; i++){
cnt1[s[i] - 'a'] += 1;
cnt2[t[i] - 'a'] += 1;
}
for(int i = 0; i < n; i++){
cnt2[t[i] - 'a'] -= 1;
for(int j = 0; j < 3; j++){
if(t[i] - 'a' != j){
if(j == 0 && cnt1[0]){
if(cnt1[0] - 1 + cnt1[1] >= cnt2[2] && cnt1[0] - 1 + cnt1[2] >= cnt2[1]){
cout << 'a';
cnt1[0] -= 1;
break;
}
}
if(j == 1 && cnt1[1]){
if(cnt1[1] - 1 + cnt1[2] >= cnt2[0] && cnt1[1] - 1 + cnt1[0] >= cnt2[2]){
cout << 'b';
cnt1[1] -= 1;
break;
}
}
if(j == 2 & cnt1[2]){
if(cnt1[2] - 1 + cnt1[1] >= cnt2[0] && cnt1[2] - 1 + cnt1[0] >= cnt2[1]){
cout << 'c';
cnt1[2] -= 1;
break;
}
}
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |