#include "ramen.h"
#include <bits/stdc++.h>
using namespace std;
void Ramen(int N) {
vector<int> mn_poss, mx_poss;
for (int i = 0; i < N; i += 2) {
if (Compare(i, i + 1) == 1) {
mn_poss.push_back(i + 1);
mx_poss.push_back(i);
} else {
mn_poss.push_back(i);
mx_poss.push_back(i);
}
}
N++;
if (N & 1) {
mn_poss.push_back(N - 1);
mx_poss.push_back(N - 1);
}
int best_mx = mx_poss.front();
for (int e : mx_poss)
if (Compare(e, best_mx))
best_mx = e;
int best_mn = mn_poss.front();
for (int e : mn_poss)
if (Compare(best_mn, e))
best_mn = e;
Answer(best_mn, best_mx);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
212 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
212 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
212 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |