# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
463600 | kilikuma | Exam (eJOI20_exam) | C++17 | 219 ms | 2636 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct Segment {
int deb, fin;
};
bool comp(Segment a, Segment b) {
if (a.deb < b.deb) return (a.deb < b.deb);
else return (a.fin > b.fin);
}
int main() {
int N;
scanf("%d",&N);
int A[100000], B[100000];
int nbSegments =0;
Segment seg[100000];
int dp[100000];
for (int i=0;i<100000;i++) {
dp[i] = 100000;
}
dp[0] = -194;
for (int i=1;i<=N;i++) {
scanf("%d",&A[i]);
}
for (int i=1;i<=N;i++) {
scanf("%d",&B[i]);
}
for (int i=1;i<=N;i++) {
for (int j=i; j<= N; j++) {
if (A[j] == B[i]) {
seg[nbSegments].deb = i;
seg[nbSegments].fin = j;
nbSegments ++;
}
}
}
sort(seg, seg + nbSegments, comp);
for (int iSegment = 0;iSegment < nbSegments; iSegment ++) {
int dp1[100000];
for (int i=0;i<= nbSegments;i++) dp1[i] = 100000;
for (int iCase = 0; iCase <= nbSegments; iCase ++) {
if (dp[iCase] == 100000) {;}
else {
if (seg[iSegment].fin >= dp[iCase]) {
// cout << iCase << endl;
dp1[iCase+1] = min(dp[iCase+1], seg[iSegment].fin);
}
}
}
for (int iCase =0; iCase <=nbSegments;iCase ++) {
if(dp1[iCase] != 100000) dp[iCase] = dp1[iCase];
}
}
int maxi =0;
for (int iCase = 0; iCase <= nbSegments; iCase ++) {
if (dp[iCase] != -1) maxi = max(maxi, iCase);
}
printf("%d\n", maxi);
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |