구간DP의 두 가지 해법
2728 단어 dp
1 for 순환
/*
DP -- 。
[xxx]oooo, , xxx, ooo, 1 2.
*/
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1002;
int n;
char s[maxn];
int dp[maxn][maxn];
int max(int a,int b){
return a > b ? a : b;
}
void printArr(){
int i,j;
for(i=0;i<n;i++){
for(j=0;j<n;j++)
cout << dp[i][j] << " ";
cout << endl;
}
cout << endl;
}
int main()
{
freopen("in.txt", "r", stdin);
//freopen("//media/ /ACM/input.txt","r",stdin);
while(scanf("%s",s),s[0]!='e')
{
int i,j,k;
n=strlen(s);
for(i=0;i<n;i++)
for(j=0;j<n;j++)
dp[i][j]=0;
for(i=n-1;i>=0;i--)
{
//cout << i << " ";
for(j=i+1;j<=n-1;j++)
{
//cout << i << " "; //i ,j
dp[i][j]=max(dp[i+1][j],dp[i][j-1]);
for(k=i+1;k<=j;k++) //k
{
//cout << k ;
if((s[i]=='('&&s[k]==')')||(s[i]=='['&&s[k]==']'))
dp[i][k]=max(dp[i][k],dp[i+1][k-1]+2); //k-1 ,i+1
dp[i][j]=max(dp[i][j],dp[i][k]+dp[k+1][j]); //k 【i,j】
}
// cout<<i<<" "<<j<<" "<<dp[i][j]<<endl;
}
}
cout<<dp[0][n-1]<<endl;
}
return 0;
}
2는 검색+기억.
#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cstdio>
using namespace std;
int dp[102][102];
char s[102];
int len;
int MATCH(int i,int j)
{
if(s[i]=='('&&s[j]==')') return 1;
if(s[i]=='['&&s[j]==']') return 1;
return 0;
}
int solve(int l,int r)
{
if(dp[l][r]!=-1) return dp[l][r];
if(l>=r)
{
return dp[l][r]=0;
}
int i,j;
int tmp,temp1,temp2;
tmp=0;
for(i=l; i<=r; i++)
{
temp1=temp2=0;
if(MATCH(l,i))
{
temp1=max(temp1,solve(l+1,i-1)+1+1);
}
else
{
temp1=max(temp1,solve(l+1,i));
temp1=max(temp1,solve(l,i-1));
}
if(i!=r)
{
temp2=solve(i+1,r);
}
tmp=max(tmp,temp1+temp2);
}
return dp[l][r]=tmp;
}
int main()
{
int i,j;
while(gets(s)!=NULL&&s[0]!='e')
{
memset(dp,-1,sizeof(dp));
printf("%d
",solve(0,strlen(s)-1));
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.