1647: [Usaco2007 Open]Fliptile 翻格子游戏
1647: [Usaco2007 Open]Fliptile 翻格子游戏
Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 423 Solved: 173
[Submit][Status][Discuss]
Description
Farmer John knows that an intellectually satisfied cow is a happy cow who will give more milk. He has arranged a brainy activity for cows in which they manipulate an M x N grid (1 <= M <= 15; 1 <= N <= 15) of square tiles, each of which is colored black on one side and white on the other side. As one would guess, when a single white tile is flipped, it changes to black; when a single black tile is flipped, it changes to white. The cows are rewarded when they flip the tiles so that each tile has the white side face up. However, the cows have rather large hooves and when they try to flip a certain tile, they also flip all the adjacent tiles (tiles that share a full edge with the flipped tile). Since the flips are tiring, the cows want to minimize the number of flips they have to make. Help the cows determine the minimum number of flips required, and the locations to flip to achieve that minimum. If there are multiple ways to achieve the task with the minimum amount of flips, return the one with the least lexicographical ordering in the output when considered as a string. If the task is impossible, print one line with the word "IMPOSSIBLE".
Input
* Line 1: Two space-separated integers: M and N
* Lines 2..M+1: Line i+1 describes the colors (left to right) of row i of the grid with N space-separated integers which are 1 for black and 0 for white
Output
* Lines 1..M: Each line contains N space-separated integers, each specifying how many times to flip that particular location.
Sample Input
1 0 0 1
0 1 1 0
0 1 1 0
1 0 0 1
Sample Output
1 0 0 1
1 0 0 1
0 0 0 0
OUTPUT DETAILS:
After flipping at row 2 column 1, the board will look like:
0 0 0 1
1 0 1 0
1 1 1 0
1 0 0 1
After flipping at row 2 column 4, the board will look like:
0 0 0 0
1 0 0 1
1 1 1 1
1 0 0 1
After flipping at row 3 column 1, the board will look like:
0 0 0 0
0 0 0 1
0 0 1 1
0 0 0 1
After flipping at row 3 column 4, the board will look like:
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
Another solution might be:
0 1 1 0
0 0 0 0
0 0 0 0
0 1 1 0
but this solution is lexicographically higher than the solution above.
HINT
Source
题解:没记错的话,这个是当年囧神(囧神=JSZKC,省选前夕orz一下攒攒RP)出的NOIP模拟题里面的,当时的我只知道 的纯暴力枚举,但事实上不用这样——
其实还是枚举,但实际上只要 的枚举即可,看到 ,显然就是枚举第一行啦,事实上第一行的决策将直接决定下一行的决策,然后下一行影响下一行,也就是说实际上第一行的决定决定了全局的决策,然后根据第一行二进制穷举出来的进行模拟,然后判断此方案是否可行,然后打擂台记录下来
有人可能会在比对过程中再弄个字典序比较,因为题目中说要字典序最小,但是还有一个细节你似乎忽略了——我们二进制穷举从小数字到大数字本身就符合字典序上升,对于一个第一行决策情况,最多只有一种合法解,所以完全不必比较,直接“先入为主”即可
1 /************************************************************** 2 Problem: 1647 3 User: HansBug 4 Language: Pascal 5 Result: Accepted 6 Time:500 ms 7 Memory:232 kb 8 ****************************************************************/ 9 10 var 11 i,j,k,l,m,n,ans:longint; 12 a,c,e,f:array[0..20,0..20] of longint; 13 b:array[0..20] of longint; 14 begin 15 readln(n,m); 16 for i:=1 to n do 17 begin 18 for j:=1 to m do read(a[i,j]); 19 readln; 20 end; 21 fillchar(b,sizeof(b),0);ans:=maxlongint; 22 while b[0]=0 do 23 begin 24 for i:=1 to m do c[0,i]:=b[i]; 25 for i:=1 to n do 26 for j:=1 to m do c[i,j]:=a[i,j]; 27 fillchar(e,sizeof(e),0);k:=0; 28 for i:=1 to n do 29 begin 30 for j:=1 to m do 31 if c[i-1,j]=1 then 32 begin 33 e[i,j]:=1;inc(k); 34 c[i,j]:=1-c[i,j]; 35 c[i,j-1]:=1-c[i,j-1]; 36 c[i,j+1]:=1-c[i,j+1]; 37 c[i-1,j]:=1-c[i-1,j]; 38 c[i+1,j]:=1-c[i+1,j]; 39 end; 40 end; 41 l:=0; 42 for i:=1 to m do inc(l,c[n,i]); 43 if l=0 then 44 begin 45 if k<ans then 46 begin 47 ans:=k; 48 for i:=1 to n do 49 for j:=1 to m do 50 f[i,j]:=e[i,j]; 51 end; 52 end; 53 i:=m; 54 while b[i]=1 do 55 begin 56 b[i]:=0; 57 dec(i); 58 end; 59 b[i]:=1; 60 end; 61 if ans=maxlongint then 62 begin 63 writeln('IMPOSSIBLE'); 64 halt; 65 end; 66 for i:=1 to n do 67 for j:=1 to m do 68 if j<m then write(f[i,j],' ') else writeln(f[i,j]); 69 readln; 70 end.
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 上周热点回顾(3.3-3.9)