# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
163457 | quoriess | Igra (COCI17_igra) | C++14 | 3 ms | 380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <unistd.h>
using namespace std;
typedef long long int lli;
typedef pair<lli, lli> pii;
#define dbg(x) cout << #x << " has a value of: " << x << "\n";
#define usize(x) (int)(x.size())
#define plist(x) \
for (int i = 0; i < usize(x); i++) \
cout << "eleman " << i << " = " << x[i] << "\n";
#define foreach(x) for (auto item : x)
#define fill(s, x) \
for (int i = 0; i < x; i++) \
cin >> s[i];
#define in(veriler, a) (veriler.find(a) != veriler.end())
#define btw(x, y, z) x >= y&& x <= z;
std::ostream& operator<<(std::ostream& os, pair<int,int> p) {
os << p.first << ", " << p.second;
return os;
}
#ifdef ONLINE_JUDGE
#define fio ios_base::sync_with_stdio(false);cin.tie(NULL);
#else
#define fio //a
#endif
int main(){
int n;
cin>>n;
string ltrs,frb;
cin>>ltrs>>frb;
string res="";
vector<int> freq(3);
vector<int> frbq(3);
for(int i=0;i<n;i++){
freq[ltrs[i]-'a']++;
frbq[frb[i]-'a']++;
}
for(int i=0;i<n;i++){
frbq[frb[i]-'a']--;
for(int j=0;j<3;j++){
if(freq[j]==0)continue;
if(j==frb[i]-'a'){
continue;
}
freq[j]--;
bool h=true;
for(int k=0;k<3;k++){
if(freq[k]+frbq[k]>n-i-1){h=false;}
}
if(h){
res+=j+'a';
break;
}
else{
freq[j]++;
}
}
}
cout<<res<<"\n";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |