本次新生赛部分题解

A poj1129

这题的愿意是考察四色原理(不是太难,主要是了解),但是模拟+暴力枚举也是可以过的,有几个WA点,注意看注释

#include
#include
#include
using namespace std;
int main()
{
    int n,i,j,k;
    while(cin>>n && n)
    {
        bool map[50][50];
        memset(map,false,sizeof(map));
        char ch[1000];
        getchar();
        for(i=1;i<=n;i++)
        {
            gets(ch);
            for(j=2;jmaxlen)
                maxlen=j;
                break;
            }
            if(j==4)break;//这里用到四色原理剪枝
        }
        if(maxlen==1)
            printf("1 channel needed.\n");//注意单复数和结尾的点
        else
            printf("%d channels needed.\n",maxlen);
    }
    return 0;
}
B 最小运输代价
floyd路径记录,按字典序记录,比裸floyd要难一点,WA点很多

#include
#include
#include
using namespace std;
int n;
int map[505][505];//数据范围没给,就写了一般最大的情况
int path[505][505];
int cost[505];
int main()
{
    while(cin>>n && n)//多组数据
    {
        for(int i=1;i<=n;i++)
        for(int j=1;j<=n;j++)
        {
            scanf("%d",&map[i][j]);
            if(map[i][j]==-1)
            map[i][j]=0xfffffff;
            path[i][j]=j;
        }
        for(int i=1;i<=n;i++)
        scanf("%d",&cost[i]);
        for(int k=1;k<=n;k++)
        for(int i=1;i<=n;i++)
        for(int j=1;j<=n;j++)
        {
                if(map[i][k]+map[k][j]+cost[k]path[i][k])
                        path[i][j]=path[i][k];
                }
        }
        int a,b;
        while(~scanf("%d%d",&a,&b))
        {
            if(a==-1 && b==-1)
            break;
            printf("From %d to %d :\n",a,b);
            printf("Path: %d",a);
            int temp=a;
            while(temp!=b)
            {
                printf("-->%d",path[temp][b]);
                temp=path[temp][b];
            }
            printf("\n");
            printf("Total cost : %d\n\n",map[a][b]);//回城符
        }
    }
    return 0;
}

D 南邮oj1076机器狗组装

贪心每次选最小的两个合并,但是如果每次结束都排序会超时,可以想到最小堆维护的代价为logn,于是就可以在nlogn的时间里解决,stl为我们提供了现成的堆数据结构——优先队列

#include
#include
#include
#include
#include
using namespace std;
struct cmp
{
    bool operator()(int a,int b)
    {
        return a>b;
    }
};
int main()
{
    priority_queue,cmp> q;
    int n,sum=0;
    cin>>n;
    for(int i=0;i

E HDU1253

胜利大逃亡,比较裸的BFS,不会的同学可以借这道题学习一下,但是注意如果写的不是太好,提交选G++会超时

我也是超了好几次,改用c++就过了

#include
#include
#include
#include
using namespace std;
int map[50][50][50];
bool vis[50][50][50];
int a,b,c,t;
typedef struct s
{
	int x;
	int y;
	int z;
	int step;
}qu;
int go(int x,int y,int z)  
{  
    if(0<=x&&x q;
		temp1.x=0;
		temp1.y=0;
		temp1.z=0;
		temp1.step=0;
		vis[temp1.x][temp1.y][temp1.z]=true;
		q.push(temp1);
		while(!q.empty())
		{
			temp1=q.front();
			if(temp1.step>t)
			{
				break;
			}
			q.pop();
			if(temp1.x==a-1 && temp1.y== b-1 && temp1.z==c-1)
			{
				cout<
f超级楼梯

递推dp[i]=dp[i-1]+dp[i-2]

I福州大学月赛题 文件系统

小模拟,考察代码基本功和细心程度,注意细节不会有太大问题

#include
#include
#include
using namespace std;
typedef struct user
{
    char name[12];
    int groupnum;
    char group[105][12];
}user;
typedef struct file
{
    char name[12];
    char quan[5];
    char owner[12];
    char group[12];
}file;
int main()
{
    int t;
   // freopen("in.txt","r",stdin);
    cin>>t;
    while(t--)
    {
		user u[105];
		file f[105];
		int map[105][105];
        int n,m;
        scanf("%d",&n);
        for(int i=0;i


你可能感兴趣的:(资料,ACM竞赛算法)