# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
110402 | pamaj | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++14 | 60 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 410;
int n;
bool check(vector<pair<char, int>> &t)
{
for(int i = 0; i < t.size() - 1; i++)
if(t[i].first == t[i + 1].first) return false;
return true;
}
int main()
{
cin >> n;
vector<pair<char, int>> s, t;
for(int i = 0; i < n; i++)
{
char c;
cin >> c;
s.push_back({c, i});
}
t = s;
sort(s.begin(), s.end());
int ans = 1e9;
do
{
if(check(s))
{
int num_dif = 0;
for(int i = 0; i < n; i++)
if(s[i].second != t[i].second) num_dif++;
ans = min(ans, num_dif);
}
} while(next_permutation(s.begin(), s.end()));
cout << (ans == (int)1e9 ? -1 : ans) << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |