暑期个人赛第二场

第二场个人赛,队友三人齐上阵,感觉还是蛮不错的,队友分别收获a,d一血,自己在c题也险些拿下一血,甚是可惜


先看看自己研究的c吧


C 1213 小V的滑板鞋

思路:双目标优化问题,瞬间想到星星问题,树状数组优化处理

而1e9的鞋子数按单支处理,O(n^2)肯定tle,于是想到四数和的分治,顺利解决

最后,就是注意一下cmp的处理,等号一定要特判啊,这个点wa了我1h,直接wa掉了我完美的一血梦,关键是心态有点崩,还需冷静

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

const int maxn = 2e5+10;

typedef struct SHOES
{
    int m;
    int w;
    bool isShoes;
}Shoes;

Shoes sho[maxn];

int c[maxn];

bool cmp(const Shoes &a,const Shoes &b)
{
    if(a.m0)
	{
		s+=c[i];
		i-=lowbit(i);
	}
	return s;
}

void modify(int i,int val)
{
	while(i<=(1e5+10))
	{
		c[i]+=val;
		i+=lowbit(i);
	}
}


int main()
{
    int n;
    int M,W;
    while(scanf("%d%d%d",&n,&M,&W)!=EOF)
    {
        memset(c,0,sizeof(c));
        long long sumshoes = 0LL;
        for(int i=0;i0)
                {
                    sumshoes += (long long)(sum(sho[i].w));
                }
            }
        }
        //cout << sumshoes << endl;
        sumshoes /= 2LL;
        printf("%lld\n",sumshoes);
    }
    return 0;
}

再来看看我两个队友拿的一血吧

A 1229 Glory And String

思路:又是个典型的字符串dp问题,不难发现,删除和添加操作是一样的,于是,对原串和反串做个lcs,O(n^2)的复杂度绰绰有余,完美解决

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

const int maxn = 5e3+10;

char a[maxn],b[maxn];
int f[maxn][maxn];

int main()
{
    int t;
    while(scanf("%d",&t)!=EOF)
    {
        while(t--)
        {
            scanf("%s",&a[1]);
            int n = strlen(&a[1]);
            //cout << n << endl;
            for(int i=1;i<=n;i++)
            {
                b[i]=a[n-i+1];
            }
            for(int i=1;i<=n;i++)
            {
                for(int j=1;j<=n;j++)
                {
                    if(a[i]==b[j])
                    {
                        f[i][j]=f[i-1][j-1]+1;
                    }
                    else
                    {
                        f[i][j]=max(f[i-1][j],f[i][j-1]);
                    }
                }
            }
            printf("%d\n",n-f[n][n]);
        }
    }
    return 0;
}

最后一题,另一个队友写的模拟

D 1237 W老师的玩具

思路:寻找最优策略,逆向模拟,正数减一,零合并,只要想到,问题并不大

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

const int maxn = 1e6+10;

int a[maxn];

int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        for(int i=0;i> 1) ;
            t++;
        }
        int les = n - di;
        //cout << les << "**" << t<1)
        {
            t++;
            les -= (les>>1);
        }
        printf("%d\n",t);
    }
    return 0;
}

总的来说还挺不错,加油吧

文章地址:http://blog.csdn.net/owen_q/article/details/78056720

你可能感兴趣的:(模拟,二分,dp,字符串,数组,xdoj)