Damn Couples

本文介绍了一个关于社交俱乐部成员间关系的游戏算法问题。在这个问题中,俱乐部的领导者通过宣布虚构的关系来使得某些成员离开,以此减少俱乐部的人数。文章讨论了如何通过特定的策略来确定最终可能留下的最多人数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

As mentioned in the problem "Couples", so many new words appear on the internet. Another special one is "Damn Couples", a club which consists of people who have failed on love affairs and decide not to start a relationship. (If you want to know more words, just turn to a search engine.)

Damn couples!

We have a group of people in the club, and everyday they sit there in one line in a fixed order, doing nothing. Life in the club is indeed boring, especially for the leader Wyest, and one day she invented a game. She first makes up a list of imaginary "8g"s among the members, every "8g" is between two persons, then publishes the list. Each minute she chooses one "8g" from the list and announces it to be true, until all "8g"s in the list have been announced. She will not 8g the same two persons more than once.

In a single minute, the following things may happen.

1. If the two persons involved in the "8g" are sitting next to each other, one of them will speak out the "Damn couples!" slogan, then stand up and leave the table. Notice that leaving doesn't prevent him/her from possible future "8g"s.
2. If the ith person left, the (i-1)th and the (i+1)th are considered to be next to each other.

On the other hand, Wyest wouldn't like to see people become too few since she likes it to be noisy. All the members know this, however, to show their loyalty for the club, they try to make leaving people as many as possible, based on the already announced "8g"s and those not yet to be. Wyest also knows what they're planning, so now she wants to know at most how many people can remain, if she carefully chooses the "8g" to announce each minute. Could you help her find it out?


Input

The first line of each case will contain two integers n (2 <= n <= 500) and m (0 <= m <= C(n, 2)), indicating the number of persons and the number of "8g"s in the list. People are indexed from 0 to n - 1 and they always sit in increasing order. The following m lines each contains two integers a and b, meaning a "8g" between a and b. Proceed to the end of file.

Output

For each case, print one line containing the maximum number of people that can remain in total.

Sample Input

3 2
0 1
1 2
3 1
0 2

Sample Output

1
3

Hint

In the first case, no matter in what order the "8g"s are announced, the 1st person wouldn't leave first. In the second case, the 0th person and the 2nd person didn't sit together, so all of the three remain.


#include<bits/stdc++.h>
#include<cstring>
#include<vector>
#include<algorithm>
#include<iostream>

using namespace std;

const int N=500+10;

int dp[N],vis[N][N];

void init(){
    dp[0]=0;dp[1]=dp[2]=dp[3]=1;
    for(int i=4;i<N;i++)
    for(int j=1;j<i;j++)
    dp[i]=max(dp[i],min(dp[j-1]+dp[i-j],dp[j]+dp[i-j-1]));
}

int main(){
    //freopen("in.txt","r",stdin);
    init();
    int m,n;
    while(~scanf("%d%d",&n,&m)){
        memset(vis,0,sizeof(vis));
        for(int i=0;i<m;i++){
            int x,y;
            scanf("%d%d",&x,&y);
            //if(abs(x-y)!=1)continue;
            vis[x][y]=vis[y][x]=1;
        }
        int cnt=1;int ans=0;
        for(int i=0;i<n;i++){

            if(vis[i][i+1])cnt++;
            else{
                ans+=dp[cnt];
                cnt=1;
            }
            //cout<<i<<" "<<cnt<<endl;
        }
        printf("%d\n",ans);
    }
    //fclose(stdin);
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值