【贪心】Google Code Jam Round 1A 2018 Waffle Choppers
题意:给你一个矩阵,有些点是黑的,让你横切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),则无解。
- #include<cstdio>
- #include<cstring>
- using namespace std;
- int T,n,m,h,v;
- char a[105][105];
- int hq[105];
- int cnts[105],t;
- bool check1(){
- for(int i=1;i<=h+1;++i){
- if(cnts[i]!=t){
- return 0;
- }
- }
- return 1;
- }
- bool check2(){
- for(int i=1;i<=h+1;++i){
- if(cnts[i]>t){
- return 0;
- }
- }
- return 1;
- }
- int main(){
- //freopen("a.in","r",stdin);
- scanf("%d",&T);
- for(int zu=1;zu<=T;++zu){
- printf("Case #%d: ",zu);
- scanf("%d%d%d%d",&n,&m,&h,&v);
- for(int i=1;i<=n;++i){
- scanf("%s",a[i]+1);
- }
- int sum=0;
- for(int i=1;i<=n;++i){
- for(int j=1;j<=m;++j){
- sum+=(a[i][j]=='@');
- }
- }
- if(sum%(h+1)!=0){
- puts("IMPOSSIBLE");
- continue;
- }
- t=sum/(h+1);
- int cnt=0;
- bool flag=1;
- int last=0,num=0;
- for(int i=1;i<=n;++i){
- for(int j=1;j<=m;++j){
- cnt+=(a[i][j]=='@');
- }
- if(cnt==t){
- ++num;
- for(int k=last+1;k<=i;++k){
- hq[k]=num;
- }
- last=i;
- cnt=0;
- }
- else if(cnt>t){
- flag=0;
- break;
- }
- }
- if(!flag){
- puts("IMPOSSIBLE");
- continue;
- }
- if(sum/(h+1)%(v+1)!=0){
- puts("IMPOSSIBLE");
- continue;
- }
- t=sum/(h+1)/(v+1);
- memset(cnts,0,sizeof(int)*(2+h));
- flag=1;
- for(int i=1;i<=m;++i){
- for(int j=1;j<=n;++j){
- cnts[hq[j]]+=(a[j][i]=='@');
- }
- if(check1()){
- memset(cnts,0,sizeof(int)*(2+h));
- }
- else if(!check2()){
- flag=0;
- break;
- }
- }
- if(!flag){
- puts("IMPOSSIBLE");
- continue;
- }
- puts("POSSIBLE");
- }
- return 0;
- }
【贪心】Google Code Jam Round 1A 2018 Waffle Choppers的更多相关文章
- 【二分答案】Google Code Jam Round 1A 2018
题意:有R个机器人,去买B件商品,有C个收银员,每个收银员有能处理的商品数量上限mi,处理单件商品所需的时间si,以及最后的装袋时间pi. 每个收银员最多只能对应一个机器人,每个机器人也最多只能对应一 ...
- Google Code Jam Round 1A 2015 解题报告
题目链接:https://code.google.com/codejam/contest/4224486/ Problem A. Mushroom Monster 这题题意就是,有N个时间点,每个时间 ...
- 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 ...
- [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 ...
- Google Code Jam Round 1C 2015 Problem A. Brattleship
Problem You're about to play a simplified "battleship" game with your little brother. The ...
- [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 ...
- 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 ...
- 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 ...
- 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 ...
随机推荐
- 零值比较--BOOL,int,float,指针变量与零值比较的if语句
这是程序员面试的一道常见题,也是个C++基础问题.若只在大学里看过几本基础的编程入门书,看见这道题可能会觉得奇怪,不就是和0比较吗,直接拿出来比就是了,其实非也.下文引自google搜索结果,出处不详 ...
- python端口扫描
简易版: #author:Blood_Zero #coding:utf-8 import socket import sys PortList=[21,22,23,25,80,135] # host= ...
- The Art of Memory Forensics-Windows取证(Virut样本取证)
1.前言 The Art of Memory Forensics真是一本很棒的书籍,其中使用volatility对内存进行分析的描述可以辅助我们对更高级类的木马进行分析和取证,这里对书中的命令进行了笔 ...
- go 指针类型
变量和内存地址 每个变量都有内存地址,可以说通过变量来操作对应大小的内存 var a int32 a = fmt.Printf(“%d\n”, a) fmt.Printf(“%p\n”, &a ...
- 使用Python扫描网络MAC地址对应的IP地址
#!/usr/bin/env python # -*- coding: utf-8 -*- from scapy.all import srp,Ether,ARP,conf ipscan='192.1 ...
- torchvision简介
安装pytorch时,torchvision独立于torch.torchvision包由流行的数据集(torchvision.datasets).模型架构(torchvision.models)和用于 ...
- Scala中“=>”用法及含义
=> has several meanings in Scala, all related to its mathematical meaning as implication. 1. In a ...
- Python_oldboy_自动化运维之路(四)
本节内容 集合 字符编码与转码 函数语法及基本特性 函数参数与局部变量 返回值和嵌套函数 递归 匿名函数 高阶函数 1.集合 集合是一个无序的,不重复的数据组合,它的主要作用如下: 去重,把一个列表变 ...
- Nginx - upstream 模块及参数测试
目录 - 1. 前言- 2. 配置示例及指令说明 - 2.1 配置示例 - 2.2 指令 - 2.3 upstream相关变量- 3. 参数配置及测试 - 3.1 max_fa ...
- 微信小程序入坑之自定义组件
前言 最近接触微信小程序,再次之前公司用的前端框架是vue ,然后对比发现,开发小程序是各种限制,对于开发者非常不友好.各种槽点太多,完全吐槽不过来,所以在此不多说,打算下次专门写一篇文章吐槽一下.本 ...