# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
105632 | pamaj | 세 명의 친구들 (BOI14_friends) | C++14 | 1075 ms | 8188 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
string s;
cin >> s;
if(n%2 == 0) cout << "NOT POSSIBLE\n";
else
{
int cnt[30];
memset(cnt, 0, sizeof(cnt));
int sz = n/2;
for(int i = 0; i < n; i++)
{
cnt[s[i] - 'A']++;
}
int lt = -1;
for(int i = 0; i < 26; i++)
{
if(cnt[i]%2)
{
if(lt == -1) lt = i;
else
{
cout << "NOT POSSIBLE\n";
return 0;
}
}
}
//cout << lt << "\n";
if(lt == -1)
{
cout << "NOT POSSIBLE\n";
return 0;
}
string temp;
bool already = false;
for(int i = 0; i < s.size(); i++)
{
if(s[i] - 'A' == lt)
{
string tmp;
string pass;
bool ok = true;
for(int j = 0; j < n; j++)
{
if(j == i) continue;
tmp += s[j];
}
for(int j = 0; j < sz; j++)
{
if(tmp[j] == tmp[j + sz])
{
pass += tmp[j];
}
else ok = false;
}
if(ok)
{
if(already)
{
bool eh = true;
for(int i = 0; i < temp.size(); i++)
{
if(temp[i] != pass[i]) eh = false;
}
if(!eh)
{
cout << "NOT UNIQUE\n";
return 0;
}
}
else temp = pass, already = true;
}
}
}
if(already) cout << temp << "\n";
else cout << "NOT POSSIBLE\n";
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |