| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 110388 | pamaj | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++14 | 1074 ms | 18672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 410;
int n;
bool check(string t)
{
for(int i = 0; i < t.size(); i++)
if(t[i] == t[i + 1]) return false;
return true;
}
map<pair<int, string>, int> dp;
int solve(int num, string s)
{
if(check(s)) return dp[{num, s}] = num;
if(dp[{num, s}]) return dp[{num, s}];
int melhor = 1e9;
if(num == n) return 1e9;
for(int i = 0; i < n - 1; i++)
{
string temp = s;
swap(temp[i], temp[i + 1]);
melhor = min(melhor, solve(num + 1, temp));
}
return dp[{num, s}] = melhor;
}
int main()
{
cin >> n;
string s;
cin >> s;
int ans = solve(0, s);
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... | ||||
