题意:给你一个矩阵,有些点是黑的,让你横切h刀,纵切v刀,问你是否能让切出的所有子矩阵的黑点数量相等。

设黑点总数为sum,sum必须能整除(h+1),进而sum/(h+1)必须能整除(v+1)。

先考虑横行,贪心地扫过去,如果到了某一行,当前统计的黑点数恰好为sum/(h+1),就在这里切一刀,接着统计。否则,如果>sum/(h+1),则无解。在这个过程中,每一行被切到哪一横组里就确定了。

然后纵切,过程跟横切类似,只不过统计的不是一个变量,而是一个大小为(h+1)的数组,如果到了某一列,当前统计的数组的每个分量的黑点数恰好为sum/(h+1)/(v+1),就在这里切一刀,接着统计。否则,如果数组的某个分量>sum/(h+1),则无解。

  1. #include<cstdio>
  2. #include<cstring>
  3. using namespace std;
  4. int T,n,m,h,v;
  5. char a[105][105];
  6. int hq[105];
  7. int cnts[105],t;
  8. bool check1(){
  9. for(int i=1;i<=h+1;++i){
  10. if(cnts[i]!=t){
  11. return 0;
  12. }
  13. }
  14. return 1;
  15. }
  16. bool check2(){
  17. for(int i=1;i<=h+1;++i){
  18. if(cnts[i]>t){
  19. return 0;
  20. }
  21. }
  22. return 1;
  23. }
  24. int main(){
  25. //freopen("a.in","r",stdin);
  26. scanf("%d",&T);
  27. for(int zu=1;zu<=T;++zu){
  28. printf("Case #%d: ",zu);
  29. scanf("%d%d%d%d",&n,&m,&h,&v);
  30. for(int i=1;i<=n;++i){
  31. scanf("%s",a[i]+1);
  32. }
  33. int sum=0;
  34. for(int i=1;i<=n;++i){
  35. for(int j=1;j<=m;++j){
  36. sum+=(a[i][j]=='@');
  37. }
  38. }
  39. if(sum%(h+1)!=0){
  40. puts("IMPOSSIBLE");
  41. continue;
  42. }
  43. t=sum/(h+1);
  44. int cnt=0;
  45. bool flag=1;
  46. int last=0,num=0;
  47. for(int i=1;i<=n;++i){
  48. for(int j=1;j<=m;++j){
  49. cnt+=(a[i][j]=='@');
  50. }
  51. if(cnt==t){
  52. ++num;
  53. for(int k=last+1;k<=i;++k){
  54. hq[k]=num;
  55. }
  56. last=i;
  57. cnt=0;
  58. }
  59. else if(cnt>t){
  60. flag=0;
  61. break;
  62. }
  63. }
  64. if(!flag){
  65. puts("IMPOSSIBLE");
  66. continue;
  67. }
  68.  
  69. if(sum/(h+1)%(v+1)!=0){
  70. puts("IMPOSSIBLE");
  71. continue;
  72. }
  73. t=sum/(h+1)/(v+1);
  74. memset(cnts,0,sizeof(int)*(2+h));
  75. flag=1;
  76. for(int i=1;i<=m;++i){
  77. for(int j=1;j<=n;++j){
  78. cnts[hq[j]]+=(a[j][i]=='@');
  79. }
  80. if(check1()){
  81. memset(cnts,0,sizeof(int)*(2+h));
  82. }
  83. else if(!check2()){
  84. flag=0;
  85. break;
  86. }
  87. }
  88. if(!flag){
  89. puts("IMPOSSIBLE");
  90. continue;
  91. }
  92. puts("POSSIBLE");
  93. }
  94. return 0;
  95. }

【贪心】Google Code Jam Round 1A 2018 Waffle Choppers的更多相关文章

  1. 【二分答案】Google Code Jam Round 1A 2018

    题意:有R个机器人,去买B件商品,有C个收银员,每个收银员有能处理的商品数量上限mi,处理单件商品所需的时间si,以及最后的装袋时间pi. 每个收银员最多只能对应一个机器人,每个机器人也最多只能对应一 ...

  2. Google Code Jam Round 1A 2015 解题报告

    题目链接:https://code.google.com/codejam/contest/4224486/ Problem A. Mushroom Monster 这题题意就是,有N个时间点,每个时间 ...

  3. Google Code Jam Round 1A 2015 Problem B. Haircut 二分

    Problem You are waiting in a long line to get a haircut at a trendy barber shop. The shop has B barb ...

  4. [Google Code Jam (Round 1A 2008) ] A. Minimum Scalar Product

    Problem A. Minimum Scalar Product   This contest is open for practice. You can try every problem as ...

  5. Google Code Jam Round 1C 2015 Problem A. Brattleship

    Problem You're about to play a simplified "battleship" game with your little brother. The ...

  6. [C++]Store Credit——Google Code Jam Qualification Round Africa 2010

    Google Code Jam Qualification Round Africa 2010 的第一题,很简单. Problem You receive a credit C at a local ...

  7. Google Code Jam Africa 2010 Qualification Round Problem B. Reverse Words

    Google Code Jam Africa 2010 Qualification Round Problem B. Reverse Words https://code.google.com/cod ...

  8. Google Code Jam Africa 2010 Qualification Round Problem A. Store Credit

    Google Code Jam Qualification Round Africa 2010 Problem A. Store Credit https://code.google.com/code ...

  9. Google Code Jam 2010 Round 1C Problem A. Rope Intranet

    Google Code Jam 2010 Round 1C Problem A. Rope Intranet https://code.google.com/codejam/contest/61910 ...

随机推荐

  1. 零值比较--BOOL,int,float,指针变量与零值比较的if语句

    这是程序员面试的一道常见题,也是个C++基础问题.若只在大学里看过几本基础的编程入门书,看见这道题可能会觉得奇怪,不就是和0比较吗,直接拿出来比就是了,其实非也.下文引自google搜索结果,出处不详 ...

  2. python端口扫描

    简易版: #author:Blood_Zero #coding:utf-8 import socket import sys PortList=[21,22,23,25,80,135] # host= ...

  3. The Art of Memory Forensics-Windows取证(Virut样本取证)

    1.前言 The Art of Memory Forensics真是一本很棒的书籍,其中使用volatility对内存进行分析的描述可以辅助我们对更高级类的木马进行分析和取证,这里对书中的命令进行了笔 ...

  4. go 指针类型

    变量和内存地址 每个变量都有内存地址,可以说通过变量来操作对应大小的内存 var a int32 a = fmt.Printf(“%d\n”, a) fmt.Printf(“%p\n”, &a ...

  5. 使用Python扫描网络MAC地址对应的IP地址

    #!/usr/bin/env python # -*- coding: utf-8 -*- from scapy.all import srp,Ether,ARP,conf ipscan='192.1 ...

  6. torchvision简介

    安装pytorch时,torchvision独立于torch.torchvision包由流行的数据集(torchvision.datasets).模型架构(torchvision.models)和用于 ...

  7. Scala中“=>”用法及含义

    => has several meanings in Scala, all related to its mathematical meaning as implication. 1. In a ...

  8. Python_oldboy_自动化运维之路(四)

    本节内容 集合 字符编码与转码 函数语法及基本特性 函数参数与局部变量 返回值和嵌套函数 递归 匿名函数 高阶函数 1.集合 集合是一个无序的,不重复的数据组合,它的主要作用如下: 去重,把一个列表变 ...

  9. Nginx - upstream 模块及参数测试

    目录 - 1. 前言- 2. 配置示例及指令说明    - 2.1 配置示例    - 2.2 指令    - 2.3 upstream相关变量- 3. 参数配置及测试    - 3.1 max_fa ...

  10. 微信小程序入坑之自定义组件

    前言 最近接触微信小程序,再次之前公司用的前端框架是vue ,然后对比发现,开发小程序是各种限制,对于开发者非常不友好.各种槽点太多,完全吐槽不过来,所以在此不多说,打算下次专门写一篇文章吐槽一下.本 ...