Codeforces Round \ # 189 (Div. 1) B. 단조 로 운 라인 대열 의 사이 코스
7027 단어 codeforces
Time Limit: 20 Sec
Memory Limit: 256 MB
제목 연결
http://codeforces.com/problemset/problem/319/B
Description
There are n psychos standing in a line. Each psycho is assigned a unique integer from 1 to n. At each step every psycho who has an id greater than the psycho to his right (if exists) kills his right neighbor in the line. Note that a psycho might kill and get killed at the same step.
You're given the initial arrangement of the psychos in the line. Calculate how many steps are needed to the moment of time such, that nobody kills his neighbor after that moment. Look notes to understand the statement more precise.
Input
The first line of input contains integer n denoting the number of psychos, (1 ≤ n ≤ 105). In the second line there will be a list of n space separated distinct integers each in range 1 to n, inclusive — ids of the psychos in the line from left to right.
Output
Print the number of steps, so that the line remains the same afterward..
Sample Input
1010 9 7 8 6 5 3 4 2 1
Sample Output
2
HINT
제목
한 무더기 의 수 를 줄 게. 매번 몇 번 씩 그의 오른쪽 에서 계속 줄 어 든 서열 을 먹 을 수 있어. 몇 바퀴 를 물 어보 면 상승 서열 이 될 거 야.
문제 풀이:
처음에 생각 했 던 폭력 은 집합 / 링크 로 최적화 시 켰 는데 불행 하 게 도 t 에 의 해.........................................................
T 는 100000, 1, 2, 3, 4, 5... 99999.
정 해 는 단조 로 운 대기 열 입 니 다. 단조 로 운 하강 순 서 를 유지 하면 어디 까지 죽 일 위 치 를 찾 을 수 있 습 니 다.
살인 횟수
코드
#include <cstdio>
#include <cmath>
#include <cstring>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
#include <sstream>
#include <queue>
#include <typeinfo>
#include <fstream>
#include <map>
#include <stack>
typedef long long ll;
using namespace std;
//freopen("D.in","r",stdin);
//freopen("D.out","w",stdout);
#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
#define test freopen("test.txt","r",stdin)
#define maxn 1000005
#define mod 10007
#define eps 1e-5
const int inf=0x3f3f3f3f;
const ll infll = 0x3f3f3f3f3f3f3f3fLL;
inline ll read()
{
ll x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
return x*f;
}
//**************************************************************************************
int a[maxn];
int f[maxn];
int t[maxn];
int main()
{
int n=read(),top=0,ans=0;
for(int i=0;i<n;i++)
a[i]=read();
for(int i=n-1;i>=0;i--)
{
int tt=0;
while(top&&a[t[top-1]]<a[i])
f[i]=tt=max(tt+1,f[t[--top]]);
t[top++]=i;
}
printf("%d",*max_element(f,f+n));
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.