[hdu3484]枚举

题意:给两个个01矩阵,有两种操作,(1)交换两列(2)反转某一行。求能否通过若干操作使两矩阵相等

思路:(把所有对B的操作放到A上来,这一定是可以做到一样的效果的)枚举B矩阵的第一列对应A矩阵的第几列,交换这两列,那么根据两个矩阵这一列的相等情况可以确定每一行的操作情况(操作次数实际上只有0和1两种情况),然后根据这个情况确定执行了所有行操作的A矩阵,然后从第二列开始到第m列,依次用A矩阵的某一列(这个也是枚举)去“匹配”B矩阵的当前列,匹配好了那么继续后面的匹配(任何一个可以匹配当前列的列他们是没有区别的,任取一个,所以我们取第一次出现的那一个)。这样操作直到完全匹配好。详见代码:

  1 #pragma comment(linker, "/STACK:10240000,10240000")
  2
  3 #include <iostream>
  4 #include <cstdio>
  5 #include <algorithm>
  6 #include <cstdlib>
  7 #include <cstring>
  8 #include <map>
  9 #include <queue>
 10 #include <deque>
 11 #include <cmath>
 12 #include <vector>
 13 #include <ctime>
 14 #include <cctype>
 15 #include <set>
 16 #include <bitset>
 17 #include <functional>
 18 #include <numeric>
 19 #include <stdexcept>
 20 #include <utility>
 21
 22 using namespace std;
 23
 24 #define mem0(a) memset(a, 0, sizeof(a))
 25 #define lson l, m, rt << 1
 26 #define rson m + 1, r, rt << 1 | 1
 27 #define define_m int m = (l + r) >> 1
 28 #define rep_up0(a, b) for (int a = 0; a < (b); a++)
 29 #define rep_up1(a, b) for (int a = 1; a <= (b); a++)
 30 #define rep_down0(a, b) for (int a = b - 1; a >= 0; a--)
 31 #define rep_down1(a, b) for (int a = b; a > 0; a--)
 32 #define all(a) (a).begin(), (a).end()
 33 #define lowbit(x) ((x) & (-(x)))
 34 #define constructInt4(name, a, b, c, d) name(int a = 0, int b = 0, int c = 0, int d = 0): a(a), b(b), c(c), d(d) {}
 35 #define constructInt3(name, a, b, c) name(int a = 0, int b = 0, int c = 0): a(a), b(b), c(c) {}
 36 #define constructInt2(name, a, b) name(int a = 0, int b = 0): a(a), b(b) {}
 37 #define pchr(a) putchar(a)
 38 #define pstr(a) printf("%s", a)
 39 #define sstr(a) scanf("%s", a);
 40 #define sint(a) ReadInt(a)
 41 #define sint2(a, b) ReadInt(a);ReadInt(b)
 42 #define sint3(a, b, c) ReadInt(a);ReadInt(b);ReadInt(c)
 43 #define pint(a) WriteInt(a)
 44 #define if_else(a, b, c) if (a) { b; } else { c; }
 45 #define if_than(a, b) if (a) { b; }
 46 #define test_print1(a) cout << "var1 = " << a << endl
 47 #define test_print2(a, b) cout << "var1 = " << a << ", var2 = " << b << endl
 48 #define test_print3(a, b, c) cout << "var1 = " << a << ", var2 = b" << ", var3 = " << c << endl
 49
 50 typedef double db;
 51 typedef long long LL;
 52 typedef pair<int, int> pii;
 53 typedef multiset<int> msi;
 54 typedef set<int> si;
 55 typedef vector<int> vi;
 56 typedef map<int, int> mii;
 57
 58 const int dx[8] = {0, 0, -1, 1};
 59 const int dy[8] = {-1, 1, 0, 0};
 60 const int maxn = 1e2 + 7;
 61 const int maxm = 1e3 + 7;
 62 const int maxv = 1e7 + 7;
 63 const int max_val = 1e6 + 7;
 64 const int MD = 22;
 65 const int INF = 1e9 + 7;
 66 const double pi = acos(-1.0);
 67 const double eps = 1e-10;
 68
 69 template<class T>T gcd(T a, T b){return b==0?a:gcd(b,a%b);}
 70 template<class T>void ReadInt(T &x){char c=getchar();while(!isdigit(c))c=getchar();x=0;while(isdigit(c)){x=x*10+c-‘0‘;c=getchar();}}
 71 template<class T>void WriteInt(T i) {int p=0;static int b[20];if(i == 0) b[p++] = 0;else while(i){b[p++]=i%10;i/=10;}for(int j=p-1;j>=0;j--)pchr(‘0‘+b[j]);}
 72 template<class T>bool max_update(T &a,const T &b){if(b>a){a = b; return true;}return false;}
 73 template<class T>bool min_update(T &a,const T &b){if(b<a){a = b; return true;}return false;}
 74 template<class T>T condition(bool f, T a, T b){return f?a:b;}
 75 template<class T>void copy_arr(T a[], T b[], int n){rep_up0(i,n)a[i]=b[i];}
 76 int make_id(int x, int y, int n) { return x * n + y; }
 77
 78 int n, m;
 79 int a[maxn][maxn], b[maxn][maxn], buf[maxn][maxn];
 80
 81 int swap_col(int y1, int y2) {
 82     rep_up0(i, n) {
 83         swap(a[i][y1], a[i][y2]);
 84     }
 85 }
 86
 87 int equal_col(int y1, int y2) {
 88     rep_up0(i, n) {
 89         if (a[i][y1] != b[i][y2]) return false;
 90     }
 91     return true;
 92 }
 93
 94 int copy_rec() {
 95     rep_up0(i, n) {
 96         rep_up0(j, m) {
 97             a[i][j] = buf[i][j];
 98         }
 99     }
100 }
101 int copy_rec2() {
102     rep_up0(i, n) {
103         rep_up0(j, m) {
104             buf[i][j] = a[i][j];
105         }
106     }
107 }
108
109 int main() {
110     //freopen("in.txt", "r", stdin);
111     //freopen("out.txt", "w", stdout);
112     while (cin >> n >> m, n >= 0 || m >= 0) {
113         rep_up0(i, n) {
114             rep_up0(j, m) {
115                 sint(a[i][j]);
116             }
117         }
118         rep_up0(i, n) {
119             rep_up0(j, m) {
120                 sint(b[i][j]);
121             }
122         }
123         int ok = 0;
124         copy_rec2();
125         rep_up0(i, m) {
126             copy_rec();
127             swap_col(0, i);
128             copy_rec2();
129             int flag[100];
130             rep_up0(j, n) {
131                 flag[j] = a[j][0] != b[j][0];
132             }
133             rep_up0(j, n) {
134                 for (int k = 1; k < m; k++) {
135                     a[j][k] ^= flag[j];
136                 }
137             }
138             int yes = 1;
139             for (int j = 1; j < m; j++) {
140                 int ok0 = 0;
141                 for (int k = j; k < m; k++) {
142                     if (equal_col(k, j)) {
143                         swap_col(k, j);
144                         ok0 = 1;
145                         break;
146                     }
147                 }
148                 if (!ok0) {
149                     yes = 0;
150                     break;
151                 }
152             }
153             if (yes) {
154                 ok = 1;
155                 break;
156             }
157         }
158         puts(ok? "Yes" : "No");
159     }
160     return 0;
161 }

时间: 2024-10-05 15:53:51

[hdu3484]枚举的相关文章

C# 枚举

一.在学习枚举之前,首先来听听枚举的优点. 1.枚举能够使代码更加清晰,它允许使用描述性的名称表示整数值. 2.枚举使代码更易于维护,有助于确保给变量指定合法的.期望的值. 3.枚举使代码更易输入. 二.枚举说明 1.简单枚举 枚举使用enum关键字来声明,与类同级.枚举本身可以有修饰符,但枚举的成员始终是公共的,不能有访问修饰符.枚举本身的修饰符仅能使用public和internal. 枚举是值类型,隐式继承自System.Enum,不能手动修改.System.Enum本身是引用类型,继承自S

C++ 枚举定义

我们在平常的编程中,时常需要为一些属性定义一组可以选择的值,比如文件打开的状态可能会有三种:输入 输出和追加 我们一般情况下记录这些状态是让每一个状态和一个常数相对应   比如 1 const int input=0; 2 const int output=1; 3 const int append=2; 这个方法虽然也是可以得,不过它有一个明显的缺点就是    没有指出这些值是相关联的 而C++中的  枚举  提供了一种替代的方法   不但可以定义常数集   还可以将其聚集成组    如下:

java 枚举常用操作

在JDK1.5 之前,我们定义常量都是: public static fianl.... .现在好了,有了枚举,可以把相关的常量分组到一个枚举类型里,而且枚举提供了比常量更多的方法. Java代码 public enum Color { } JDK1.6之前的switch语句只支持int,char,enum类型,使用枚举,能让我们的代码可读性更强. Java代码 enum Signal { } public class TrafficLight { public void change() {

java 枚举的应用

使用枚举的方式 实现上一篇中介绍的例子:并增加功能,输出今天执行的内容: import java.util.Calendar;import java.util.Date; /** * 周 的枚举 */public enum Day { WORK(1, 2, 3, 4, 5) { @Override public void doThing() { System.out.println("工作..."); } },//工作日 STA(6) { @Override public void d

C#枚举类型的常用操作总结

枚举类型是定义了一组"符号名称/值"配对.枚举类型是强类型的.每个枚举类型都是从system.Enum派生,又从system.ValueType派生,而system.ValueType又从system.Object派生,所以枚举类型是指类型. 编译枚举类型时,C#编译器会把每个符号转换成类型的一个常量字段.C#编译器将枚举类型视为基元类型. 1.获取枚举列表:         /// <summary>         /// 获取枚举列表         /// <

Swift学习之位移枚举的按位或运算

在OC里面我们经常遇到一些枚举值可以多选的,需要用或运算来把这些枚举值链接起来,这样的我们称为位移枚举,但是在swift语言里面却不能这么做,下面来讲解一下如何在swift里面使用 OC的位移枚举的区分 //位移枚举typedef NS_OPTIONS(NSUInteger, UIViewAutoresizing) { UIViewAutoresizingNone = 0, UIViewAutoresizingFlexibleLeftMargin = 1 << 0, UIViewAutores

【BZOJ-1218】激光炸弹 前缀和 + 枚举

1218: [HNOI2003]激光炸弹 Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 1778  Solved: 833[Submit][Status][Discuss] Description 一种新型的激光炸弹,可以摧毁一个边长为R的正方形内的所有的目标.现在地图上有n(N<=10000)个目标,用整数Xi,Yi(其值在[0,5000])表示目标在地图上的位置,每个目标都有一个价值.激光炸弹的投放是通过卫星定位的,但其有一个缺点,就是其爆破

获取枚举类型Description特性的描述信息

C#中可以对枚举类型用Description特性描述. 如果需要对Description信息获取,那么可以定义一个扩展方法来实现.代码如下: public static class EnumExtensions { public static string GetDescription(this object value) { if (value==null) return string.Empty; Type type = value.GetType(); var fieldInfo = ty

JavaSE复习_6 枚举类

△单例类是指只有一个实例,而枚举类实际上就是有有限个实例的类,在类里已经把实例定义好了. △枚举类的三种创建形式: 1) enum Week { MON,TUE,WED;//枚举类有默认构造函数创建的三个实例} } 2) enum Week { MON("星期一"), TUE( "星期二"),WED ("星期三" ); //具有参数的构造函数 private String name; Week(String name) { this. name=