1. 程式人生 > 其它 >Pty loves lines 題解(dp)

Pty loves lines 題解(dp)

題目連結

題目思路

emmm這種dp真的有點小技巧 轉換了dp的思維

同時這個dp的轉移設定的也是有點不同qwq

程式碼

#include<bits/stdc++.h>
#define fi first
#define se second
#define debug printf(" I am here\n");
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pii;
mt19937 rnd(time(0));
const ll INF=0x3f3f3f3f3f3f3f3f;
const int maxn=700+5,inf=0x3f3f3f3f,mod=20071027;
const double eps=1e-10;
int n;
bool vis[maxn];
int dp[maxn*maxn];
int pr[maxn*maxn];
signed main(){
    int _;scanf("%d",&_);
    while(_--){
        scanf("%d",&n);
        vis[n]=1;
    }
    memset(dp,0x3f,sizeof(dp));
    dp[0]=0;
    for(int i=1;i<=700;i++){
        for(int j=0;j<=700*700;j++){
            int k=j+i*(i-1)/2;
            if(k<=700*700){
                dp[k]=min(dp[k],dp[j]+i);
            }
        }
        if(vis[i]){ //直接這麼寫的原因是因為輸入n單調遞增
            int ed=i*(i-1)/2,cnt=0;
            for(int j=0;j<=ed;j++){
                if(dp[ed-j]<=i){
                    pr[++cnt]=j;
                }
            }
            for(int j=1;j<=cnt;j++){
                printf("%d%c",pr[j],j==cnt?'\n':' ');
            }
        }
    }
    return 0;
}

卷也卷不過,躺又躺不平