题目大意: 给定一些正方体的关系,要求一组符合这些关系的正方体坐标,如果不存在符合条件的正方体坐标,IMPOSSIBLE。(Special Judge)

实力还是太弱了,完全不会……

#include <cstdio>
#include <stdlib>
#include <iostream>
#define MAXN 2010
#define MAXR 500000
#define MAX 999999 typedef struct edges{
int v,w,next;
}edge; int N, R;
edge edge_X[MAXR], edge_Y[MAXR], edge_Z[MAXR];
int s_X[MAXN], s_Y[MAXN], s_Z[MAXN];
int index_X[MAXN], index_Y[MAXN], index_Z[MAXN];
int degree_X[MAXN], degree_Y[MAXN], degree_Z[MAXN]; void Add(struct edges e[], int start, int end, int index[], int degree[], int &tot){
e[tot].v = end;
e[tot].next = index[start];
index[start] = tot++;
degree[end]++;
} bool init(){
int i, totx, toty, totz;
scanf("%d%d", &N, &R);
if (N == 0 && R == 0) return false;
memset(index_X, 255, sizeof(*index_X)*MAXN); //-1 indicates end of link
memset(index_Y, 255, sizeof(*index_Y)*MAXN);
memset(index_Z, 255, sizeof(*index_Z)*MAXN);
memset(degree_X, 0, sizeof(*degree_X)*MAXN);
memset(degree_Y, 0, sizeof(*degree_Y)*MAXN);
memset(degree_Z, 0, sizeof(*degree_Z)*MAXN);
totx = toty = totz = 0; for (i=1; i<=N; i++){
// node 0是超级汇点,最大的点。值为0
Add(edge_X, 0, i, index_X, degree_X, totx); //x1 of n-th Cube
Add(edge_Y, 0, i, index_Y, degree_Y, toty);
Add(edge_Z, 0, i, index_Z, degree_Z, totz);
Add(edge_X, i, i+N, index_X, degree_X, totx);
Add(edge_Y, i, i+N, index_Y, degree_Y, toty);
Add(edge_Z, i, i+N, index_Z, degree_Z, totz);
}
for (i=1; i<=R; i++){
char t[10];
int A, B;
scanf("%s%d%d", t, &A, &B);
if (t[0] == 'I'){
Add(edge_X, A, B+N, index_X, degree_X, totx); //x1(A) < x1(B)
Add(edge_X, B, A+N, index_X, degree_X, totx); //x2(A) > x1(B) or x1(B) < x2(A)
Add(edge_Y, A, B+N, index_Y, degree_Y, toty);
Add(edge_Y, B, A+N, index_Y, degree_Y, toty);
Add(edge_Z, A, B+N, index_Z, degree_Z, totz);
Add(edge_Z, B, A+N, index_Z, degree_Z, totz);
}
if (t[0] == 'X')
Add(edge_X, A+N, B, index_X, degree_X, totx); //x2(A) < x1(B)
if (t[0] == 'Y')
Add(edge_Y, A+N, B, index_Y, degree_Y, toty); //y2(A) < y1(B)
if (t[0] == 'Z')
Add(edge_Z, A+N, B, index_Z, degree_Z, totz); //z2(A) < z1(B)
}
return true;
} bool NonPreFirstTopSort(edge e[], int index[], int degree[], int n, int s[]){
int i, count(0), head(0), tail(1);
int Q[MAXN]; Q[0] = 0; while (head != tail){
s[Q[head]] = count++;
i = index[Q[head]];
while (i != -1){
if (--degree[e[i].v] == 0) Q[tail++] = e[i].v;
i = e[i].next;
}
++head;
} if (count < n) return false;
else return true;
} int main(){
int Cases = 0, i;
while (init() && ++Cases){
bool flag;
flag = NonPreFirstTopSort(edge_X, index_X, degree_X, N*2 + 1, s_X);
if (flag) flag = NonPreFirstTopSort(edge_Y, index_Y, degree_Y, N*2 + 1, s_Y);
if (flag) flag = NonPreFirstTopSort(edge_Z, index_Z, degree_Z, N*2 + 1, s_Z);
if (flag){
printf("Case %d: POSSIBLE\n", Cases);
for (i=1; i<=N; i++)
printf("%d %d %d %d %d %d\n", s_X[i], s_Y[i], s_Z[i], s_X[i+N], s_Y[i+N], s_Z[i+N]);
printf("\n"); }
else
printf("Case %d: IMPOSSIBLE\n\n", Cases);
}
//system("pause");
return 0;
}

HDU 3231 Box Relations的更多相关文章

  1. hdu 3231 Box Relations (拓扑排序)

    Box Relations Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Tot ...

  2. HDU 3213 Box Relations(拓扑排序构造)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3231 题意:有n个长方体,四种限制条件.(1)I x y x和y有相交:(2)X/Y/Z  x y x ...

  3. HDU3231 Box Relations——三维拓扑排序

    HDU3231 Box Relations 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3231 题目意思:在一个三维空间上有一些棱和坐标轴平行的立方 ...

  4. HDU 2475 BOX 动态树 Link-Cut Tree

    Box Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) [Problem De ...

  5. HDU 2088 Box of Bricks

    http://acm.hdu.edu.cn/showproblem.php?pid=2088 Problem Description Little Bob likes playing with his ...

  6. HDU 2088 Box of Bricks(脑洞)

    传送门: http://acm.hdu.edu.cn/showproblem.php?pid=2088 Box of Bricks Time Limit: 1000/1000 MS (Java/Oth ...

  7. HDU 2475 Box

    Box Time Limit: 5000ms Memory Limit: 32768KB This problem will be judged on HDU. Original ID: 247564 ...

  8. 『嗨威说』算法设计与分析 - 贪心算法思想小结(HDU 2088 Box of Bricks)

    本文索引目录: 一.贪心算法的基本思想以及个人理解 二.汽车加油问题的贪心选择性质 三.一道贪心算法题点拨升华贪心思想 四.结对编程情况 一.贪心算法的基本思想以及个人理解: 1.1 基本概念: 首先 ...

  9. HDU 1326 Box of Bricks(水~平均高度求最少移动砖)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1326 题目大意: 给n堵墙,每个墙的高度不同,求最少移动多少块转使得墙的的高度相同. 解题思路: 找到 ...

随机推荐

  1. 项目适配iOS9遇到的一些问题及解决办法

    1.网络请求报错.升级Xcode 7.0发现网络访问失败.输出错误信息 The resource could not be loaded because the App Transport Secur ...

  2. iOS 16进制颜色转换10进制颜色

    +(UIColor *)colorWithHexString:(NSString *)coloStr{ //    检索  去下空格和换行 转成大写 NSString *cString = [[col ...

  3. 安卓里面JSON处理和JAVA SE里面的JSON包

    今天编译安卓项目遇到这个问题 com.android.dex.DexException: Multiple dex files define的解决办法 大致意思就是引用了 相同的包 在JAVA SE里 ...

  4. linux 使用者管理

    1.用户标识符 UID  用户ID GID  用户组ID 2./etc/passwd 文件结构 id范围:0系统管理员|1~499 (系统账号)|500~65535 可登录账号

  5. QPointer很大程度上避免了野指针(使用if语句判断即可,类似于dynamic_cast),而且使用非常方便 good

    QPointer 如何翻译呢?我不太清楚,保留英文吧. The QPointer class is a template class that provides guarded pointers    ...

  6. windows中使用Git工具连接GitHub(配置篇)

    Git在源码管理领域目前占很大的比重了,而且开源的项目很多都转到GitHub上面了.例如:jQuery, reddit, Sparkle, curl, Ruby on Rails, node.js,  ...

  7. Android Studio 中快速提取方法

    在开发过程中,有时在一个方法内部写了过多的代码,然后想要把一些代码提取出来封装下,分离开放在一个单独的方法里,可能你的做法是直接选中后Ctrl + 叉,或者 Ctrl + C,但在Android St ...

  8. openstack中iptables的使用

    openstack中nova使用了iptables实现其网络相关功能,乍看openstack的iptables表比较复杂,整理了一下iptables的filter表和nat表的结构,以一个all in ...

  9. ecshop删除商品函数

    /** * 从回收站删除多个商品 * @param mix $goods_id 商品id列表:可以逗号格开,也可以是数组 * @return void */ function delete_goods ...

  10. linux线程间同步方式汇总

    抽空做了下linux所有线程间同步方式的汇总(原生的),包含以下几个: 1, mutex 2, condition variable 3, reader-writer lock 4, spin loc ...