poj 2090 Two-Stacks Solitaire

这道题不是特别简单,我自己考虑了很久,未果。于是希望在网络上找到参考,但是网上参考不多

题意:给一个数列,两个栈,要求数列从后往前依次入栈,问能否使出栈序列是不减的。(双栈排序)

分析:利用二分图染色法。

首先观察那些牌绝对不能压入同一个栈,若两个不能入同一栈则连一条边,然后根据二分图染色,看是否能构成二分图。如果不能直接输出impossible

两张牌i,j不能入同一栈的充要条件是,i>j>k(i最先入栈) && a[k]<a[i]<a[j]

然后根据每个点所染的颜色决定把每个牌压入哪个栈。然后模拟即可。

原代码:

//用图论的思想来做题
//二分图着色

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>

using namespace std;

#define maxn 250

struct
{
    int v,next;
}edge[maxn*maxn];

int n;
int stock[maxn], f[maxn];
int head[maxn], ecount, color[maxn], q[maxn];
int out[maxn];
bool ok;
int stk1[maxn], stk2[maxn];
int top1, top2, step;

inline int min(int a,int b){ return a<b?a:b; }

void input()
{
    for (int i =0; i < n; i++)
    {
        scanf("%d", &stock[i]);
        out[i] = stock[i];
    }
}

void addedge(int&a, int&b)
{
    edge[ecount].next = head[a];
    edge[ecount].v = b;
    head[a] = ecount++;
}

void bfs(int&s)
{
    int front =0;
    int rear =1;
    q[0] = s;
    color[s] =1;
    while (front != rear)
    {
        int a = q[front++];
        for (int i = head[a]; i !=-1; i = edge[i].next)
        {
            int b = edge[i].v;
            if (!color[b])
            {
                q[rear++] = b;
                color[b] =3- color[a];
            }
            else if (color[a] == color[b])
            {
                ok =false;
                return;
            }
        }
    }
}

void make(int i)
{
    int a = stock[i];
    bool did =true;
    while (did)
    {
        did =false;
        if (top1 >0&& stk1[top1 -1] ==out[step])
        {
            top1--;
            printf("pop 1\n");
            step++;
            did =true;
        }
        if (top2 >0&& stk2[top2 -1] ==out[step])
        {
            top2--;
            printf("pop 2\n");
            step++;
            did =true;
        }
    }
    if (i <0)
        return;
    if (color[i] ==1)
    {
        stk1[top1++] = a;
        printf("push 1\n");
    }
    else
    {
        stk2[top2++] = a;
        printf("push 2\n");
    }
}

void print()
{
    top1 = top2 =0;
    step =0;
    for (int i = n -1; i >=0; i--)
        make(i);
    make(-1);
}

void work()
{
    memset(head, -1, sizeof(head));
    f[0] = stock[0];

	int i;
    for (i =1; i < n; i++)
        f[i] = min(f[i -1], stock[i]);

    ecount =0;
    for (i =1; i < n -1; i++)
    {
        for (int j = i +1; j < n; j++)
        {
            if (stock[j] >= stock[i])
                continue;
            if (stock[j] > f[i -1])
            {
                addedge(i, j);
                addedge(j, i);
            }
        }
    }
    ok =true;
    memset(color, 0, sizeof(color));
    for (i =0; i < n; i++)
    {
        if (!color[i])
            bfs(i);
        if (!ok)
        {
            printf("impossible\n");
            return;
        }
    }
    print();
}

int main()
{
    //freopen("t.txt", "r", stdin);
	int t =0;
    while (scanf("%d", &n), n)
    {
        t++;
        printf("#%d\n", t);
        input();
        sort(out, out+ n);
        work();
    }
    return 0;
}

不知道哪里出错的代码。。:

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>

#define MAXN 250
using namespace std;

struct
{
    int v,next;
}edge[MAXN*MAXN];    //待连线的边

//输入的原数组是a[],排序后数组是b[]
int a[MAXN],b[MAXN];
int N; // 1 <= N <= 208
int f[MAXN];	//存放前i个输入中的最小值,判断能不能在一个栈中使用
int head[MAXN], ecount, color[MAXN], q[MAXN];
bool ok;
int stk1[MAXN], stk2[MAXN];
int top1, top2, step;

inline int min(int a,int b){ return a<b?a:b; }

//addedge
void addedge(int&a, int&b)
{
	//其实用一个二维数组会更容易
    edge[ecount].next = head[a];
    edge[ecount].v = b;
    head[a] = ecount++;
}

//bfs
void bfs(int&s)
{
    int front =0;
    int rear =1;
    q[0] = s;
    color[s] =1;
    while (front != rear)
    {
        int d = q[front++];
        for (int i = head[d]; i !=-1; i = edge[i].next)
        {
            int c = edge[i].v;
            if (!color[c])
            {
                q[rear++] = c;
                color[c] =3- color[d];
            }
            else if (color[d] == color[c])
            {
                ok =false;
                return;
            }
        }
    }
}

//make
void make(int i)
{
    int temp = a[i];
    bool did =true;
    while (did)
    {
        did =false;
        if (top1 >0&& stk1[top1 -1] ==b[step])
        {
            top1--;
            printf("pop 1\n");
            step++;
            did =true;
        }
        if (top2 >0&& stk2[top2 -1] ==b[step])
        {
            top2--;
            printf("pop 2\n");
            step++;
            did =true;
        }
    }
    if (i <0)
        return;
    if (color[i] ==1)
    {
        stk1[top1++] = temp;
        printf("push 1\n");
    }
    else
    {
        stk2[top2++] = temp;
        printf("push 2\n");
    }
}

//print
void print()
{
    top1 = top2 =0;
    step =0;
    for (int i = N-1; i >=0; i--)
        make(i);
    make(-1);
}

//work
void work()
{
	memset(head, -1, sizeof(head));
	f[0]=a[0];

	int i;

	//f[i]中存的相当于是前i次中最小的数
    for (i =1; i < N; i++)
        f[i] = min(f[i -1], a[i]);

	//连边
	ecount =0;	//边数
    for (i =1; i < N -1; i++)
    {
        for (int j = i +1; j < N; j++)
        {
            if (a[j] >= a[i])
                continue;

			//如果上一个 if 中a[j]<a[i],这里又大于前[i-1]个输入中的最小值
			//证明有[i-1]中的某个k,j>i>k时,有a[k]<a[j]<a[i]
			//入栈顺序是j,i,k
            if (a[j] > f[i -1])
            {
                addedge(i, j);
                addedge(j, i);
            }
        }
    }

	ok=true;
    memset(color, 0, sizeof(color));
    for (i =0; i < N; i++)
    {
        if (!color[i])
            bfs(i);
        if (!ok)
        {
            printf("impossible\n");
            return;
        }
    }
    print();
}

int main()
{
	int i;
	int t=0;
	while(~scanf("%d",&N) && N!=0)
	{
		for(i=0;i<N;i++)
		{
			scanf("%d",&a[i]);
			b[i]=a[i];
		}
		printf("#%d\n", ++t);

		//排序b[]
		sort(b,b+N);

		work();
	}

	return 0;
}
时间: 2024-10-29 15:40:03

poj 2090 Two-Stacks Solitaire的相关文章

POJ题目分类

初期: 一.基本算法:      (1)枚举. (poj1753,poj2965)      (2)贪心(poj1328,poj2109,poj2586)      (3)递归和分治法.      (4)递推.      (5)构造法.(poj3295)      (6)模拟法.(poj1068,poj2632,poj1573,poj2993,poj2996) 二.图算法:      (1)图的深度优先遍历和广度优先遍历.      (2)最短路径算法(dijkstra,bellman-ford

POJ:DNA Sorting 特殊的排序

Description One measure of ``unsortedness'' in a sequence is the number of pairs of entries that are out of order with respect to each other. For instance, in the letter sequence ``DAABEC'', this measure is 5, since D is greater than four letters to

POJ 1001 Exponentiation 无限大数的指数乘法 题解

POJ做的很好,本题就是要求一个无限位大的指数乘法结果. 要求基础:无限大数位相乘 额外要求:处理特殊情况的能力 -- 关键是考这个能力了. 所以本题的用例特别重要,再聪明的人也会疏忽某些用例的. 本题对程序健壮性的考查到达了变态级别了. 更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/sjjg/ 某人贴出的测试用例数据地址: http://poj.org/showmessage?message_id=76017 有

POJ 2240 Arbitrage:最短路 Floyd

Arbitrage:http://poj.org/problem?id=2240 大意: 给你m种货币,给你m种货币兑换规则,问通过这些规则最后能不能盈利.eg:1美元换0.5英镑,1英镑换10法郎,1法郎换0.21美元,这样1美元能换0.5*10*0.21=1.05美元,净赚0.05美元. 思路: 用Floyd找出每两种钱之间的最大兑换关系,遍历一遍,看有没有那种钱币最后能盈利,有就输出Yes,没有就是No.在处理钱币名称与编号之间的关系时,可以用map存(比较好用),当然也可以用字符串比较.

POJ 1860 Currency Exchange:最短路 Bellman-Ford

Currency Exchange:http://poj.org/problem?id=1860 大意:有多种货币,之间可以交换,但是需要手续费,也就是说既有汇率又有手续费.问经过交换之后能不能赚. 思路:Bellman_Ford,因为要求最长路,所以松弛条件改一下就好了. Tips: 3              2                  1                20.0货币的数量   兑换点的数量     主人公拥有的货币量    主人公拥有货币的价值1 2 1.00

POJ 1258 Agri-Net:最小生成树 Prim 模版题

Agri-Net:http://poj.org/problem?id=1258 大意:新镇长竞选宣言就是将网络带到每一个农场,给出农场个数,两两之间建光缆的耗费,求所有都联通的最小耗费. 思路:最小生成树,因为边比较稠密,用Prim做. PS:对于比较稠密的图,用Prim,对于比较稀疏的图,用 Kruskal.Kruskal是找边的过程,稀疏的话会比较快. 更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/sjjg/

POJ 1789 Truck History:最小生成树 Prim

Truck History:http://poj.org/problem?id=1789 大意:用一个7位的string代表一个编号,两个编号之间的距离代表这两个编号之间不同字母的个数.一个编号只能由另一个编号变化的来,变化的字母的数量就是这两个编号之间相应的距离,现在要找出一个变化方案,使得总代价最小,也就是距离之和最小. 思路:将每个字符串当成一个节点,求出每个节点之间需要变化的次数为边的权值,用Prim建立最小生成树(稠密图). 更多精彩内容:http://www.bianceng.cnh

POJ 2485 Highways:最小生成树 Prim

Highways:http://poj.org/problem?id=2485 大意:给你一个用邻接矩阵形式存储的有n个顶点的无向图,让你求它的最小生成树并求出在这个生成树里面最大的边的权值. 思路:用Prim求,判断条件改一下就行. PS:dis数组初始化的时候用memset一直RE,希望有知道怎么回事的不吝赐教,谢了~ 更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/sjjg/ #include <stdio.h

POJ 3206 Borg Maze:BFS+Prim

Borg Maze:http://poj.org/problem?id=3026 大意:给你一个m*n的迷宫,可以上下左右的走,只能走空格或字母,求出将所有字母连通起来的最小耗费. 思路:先用BFS求出S到所有A的距离,再用Prim求最小生成树,求出最小耗费.这个题坑的不在题,是数据太坑了,在空格处理上没弄好,贡献了好几个WA和CE,看Discuss才知道很坑,最后用G++过了的代码,C++还RE,实在不知道说什么好了  =.= 更多精彩内容:http://www.bianceng.cnhttp