# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
657157 | Juan | 세 명의 친구들 (BOI14_friends) | C++17 | 128 ms | 7488 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e6 + 5;
char v[maxn];
int main(){
int n; cin >> n;
for(int i = 0; i < n; i++) cin >> v[i];
int ok = 0, diffcnt = 0;
string ans = "", left="", right="";
for(int i = 0; i < n/2; i++) left+=v[i];
for(int i = n/2; i < n-1; i++) right+=v[i];
for(int i = 0; i < n/2; i++) if(left[i]!=right[i]) diffcnt++;
if(!diffcnt) ok++, ans = right;
for(int i = n-2; i >= n/2; i--){
int op;
if(right[i-n/2] == left[i-n/2]) op=-1; else op = -2;
right[i-n/2] = v[i+1];
if(right[i-n/2] == left[i-n/2]) op+=1; else op += 2;
diffcnt+=op;
if(!diffcnt){
ok++;
if(ok>=2 && op) {cout << "NOT UNIQUE\n"; return 0;}
if(ok==1) ans=right;
}
}
for(int i = n/2-1; i >= 0; i--){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |