# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
305804 | T0p_ | Exhibition (JOI19_ho_t2) | C++14 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
struct picture
{
int s, v;
bool operator < (const picture & o) const
{
return v < o.v;
}
};
picture p[100100];
int f[100100], dp[100100];
stack<int> stk, tmp;
int main()
{
int n, m;
scanf(" %d %d",&n,&m);
for(int i=1 ; i<=n ; i++)
scanf(" %d %d",&p[i].s,&p[i].v);
for(int i=1 ; i<=m ; i++)
scanf(" %d",&f[i]);
sort(p+1, p+n+1);
sort(f+1, f+m+1);
stk.push(0);
for(int i=1 ; i<=n ; i++)
{
int l = 1, r = m+1;
while(l != r)
{
int mid = (l+r)>>1;
(p[i].s <= f[mid]) ? r = mid : l = mid+1;
}
if(l == m+1) continue ;
while(l <= stk.top())
{
dp[stk.top() + 1] = max(dp[stk.top()+1], dp[stk.top()] + 1);
tmp.push(stk.top() + 1);
stk.pop();
}
dp[l] = max(dp[l], dp[stk.top()] + 1);
stk.push(l);
while(!tmp.empty())
{
stk.push(tmp.top());
tmp.pop();
}
}
int ans = 0;
for(int i=1 ; i<=m ; i++)
ans = max(ans, dp[i]);
printf("%d\n",ans);
return 0;
}
컴파일 시 표준 에러 (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... |