1008 QSC and Master (区间dp)

来源:互联网 发布:站长工具端口 编辑:程序博客网 时间:2024/05/01 12:36

QSC and Master

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 176    Accepted Submission(s): 61


Problem Description
Every school has some legends, Northeastern University is the same.

Enter from the north gate of Northeastern University,You are facing the main building of Northeastern University.Ninety-nine percent of the students have not been there,It is said that there is a monster in it.

QSCI am a curious NEU_ACMer,This is the story he told us.

It’s a certain period,QSCI am in a dark night, secretly sneaked into the East Building,hope to see the master.After a serious search,He finally saw the little master in a dark corner. The master said:

“You and I, we're interfacing.please solve my little puzzle!

There are N pairs of numbers,Each pair consists of a key and a value,Now you need to move out some of the pairs to get the score.You can move out two continuous pairs,if and only if their keys are non coprime(their gcd is not one).The final score you get is the sum of all pair’s value which be moved out. May I ask how many points you can get the most?

The answer you give is directly related to your final exam results~The young man~”

QSC is very sad when he told the story,He failed his linear algebra that year because he didn't work out the puzzle.

Could you solve this puzzle?

(Data range:1<=N<=300
1<=Ai.key<=1,000,000,000
0<Ai.value<=1,000,000,000)
 

Input
First line contains a integer T,means there are T(1≤T≤10) test case。

  Each test case start with one integer N . Next line contains N integers,means Ai.key.Next line contains N integers,means Ai.value.
 

Output
For each test case,output the max score you could get in a line.
 

Sample Input
331 2 31 1 131 2 41 1 141 3 4 31 1 1 1
 

Sample Output
020
 

Source
2016 ACM/ICPC Asia Regional Shenyang Online 

#include <stdio.h>#include <string.h>#include <algorithm>using namespace std;typedef long long LL;const int N = 305;int n, f[N][N];LL dp[N][N], key[N], sum[N];int gcd(LL a, LL b){return b == 0 ? a : gcd(b, a % b);}void DP_f(){    for(int i = 1; i < n; ++i) f[i][i+1] = gcd(key[i],key[i+1]) == 1? 0 : 1;    for(int l = 3; l <= n; l++){        for(int i = 1; i+l-1 <= n; i++){            int r = i + l - 1;            f[i][r] = (f[i+1][r-1] && gcd(key[i], key[r]) != 1);            for(int j = i + 1; j < r; j++)                f[i][r] += (f[i][j] && f[j+1][r]);        }    }}void DP_dp(){    for(int l = 2; l <= n; l++){        for(int i = 1; l+i-1 <= n; i++){            int r = l + i - 1;            if(f[i][r]) {dp[i][r] = sum[r] - sum[i-1]; continue;}            for(int j = i; j < r; j++)                dp[i][r] = max(dp[i][r], dp[i][j] + dp[j+1][r]);        }    }}int main(){    int T;    scanf("%d", &T);    while(T--){        LL val;        sum[0] = 0;        memset(dp, 0, sizeof(dp));        memset(f, 0, sizeof(f));        scanf("%d", &n);        for(int i = 1; i <= n; i++) scanf("%lld", &key[i]);        for(int i = 1; i <= n; i++) scanf("%lld", &val), sum[i] = sum[i-1] + val;        DP_f();        DP_dp();        printf("%lld\n", dp[1][n]);    }}


0 0