#include <vector>
#include <algorithm>
using namespace std;
#include <iostream>
vector<int> pre;
int n;
/*int lower_bo(int l, int r, int val) {
int mid = (l + r) / 2;
if (pre[mid] < val && (mid == n || pre[mid+1] >= val) ) {
return mid+1;
}
if (pre[mid] < val) {
return lower_bo(mid + 1, r, val);
}
if (pre[mid] > val) {
return lower_bo(l, mid - 1, val);
}
}*/
int main()
{
int n;
cin >> n;
vector<int> r;
vector<int> m;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
m.push_back(x);
}
for (int i = 0; i < n; i++) {
int x;
cin >> x;
//for (int j = i; j < n; j++) {
//if (x == m[j]) {
r.push_back(x);
// break;
//}
//}
}
int cur = 0;
bool is = false;
int sum = 0;
for (int i = 0; i < n; i++) {
if (m[i] > r[0] || i == n-1) {
if (is) {
sum += i - cur - 1;
}
cur = i;
is = 0;
}
if (m[i] == r[0]) {
is = true;
}
}
cout << sum;
/*int siz = r.size();
vector<int>max(siz, -1);
for (int i = 0; i < siz; i++) {
for (int j = 0; j < siz; j++) {
if (max[j] <= r[i] && max[j] != -1) {
if (max[j + 1] > r[i] || max[j + 1] == -1) {
max[j + 1] = r[i];
break;
}
}
}
if (max[0] > r[i] || max[0] == -1) {
max[0] = r[i];
}
}
for (int i = siz-1; i >= 0; i--) {
if (max[i] != -1) {
cout << i+1;
break;
}
}
if (siz == 0) {
cout << 0;
}*/
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
204 KB |
Output is correct |
2 |
Incorrect |
18 ms |
892 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |