이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define OYY LLONG_MAX
#define mod 998244353
#define faster ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define mid (start+end)/2
#define lim 65
#define fi first
#define se second
int n;// 1 2 3
int cev=LLONG_MAX;
bool stop=true;
string s;
inline void dpp(int mask,int tut,string st){
int deg=__builtin_popcount(mask);
if(deg==n){
cev=min(cev,tut);
stop=true;
}
for(int i=0;i<n;i++){
if(mask&(1<<i))continue;
if(st.size()>0 && s[i]==st.back())continue;
dpp(mask|(1<<i),tut+abs(deg-i),st+s[i]);
}
}
int32_t main(){
faster
cin>>n>>s;
string st="";
dpp(0,0,st);
if(stop==false)cout<<-1<<'\n';
else cout<<cev/2<<'\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |