sgu 126 Boxes
题意:较大的容量减较小的容量,较小的容量翻倍。问操作几回其中一个空。
开始用set判重,重复就不可行。不过状态最多有2e18种。不仅爆内存,还超时。然后找规律。发现只有比例为1:1,1:3,1:7,3:5,1:15,3:13,5:11,7:9......这样才行。也就是化简以后相加是2^k。
- #pragma comment(linker,"/STACK:1024000000,1024000000")
- #include <iostream>
- #include <cstdio>
- #include <cmath>
- #include <algorithm>
- #include <vector>
- #include <iomanip>
- #include <cstring>
- #include <map>
- #include <queue>
- #include <set>
- #include <cassert>
- #include <list>
- #define mkp make_pair
- using namespace std;
- const double EPS=1e-;
- const int SZ=1e2+,INF=0x7FFFFFFF;
- const long long mod=;
- typedef long long lon;
- int gcd(int x,int y)
- {
- if(x==)return y;
- if(y==)return x;
- if(x<y)swap(x,y);
- int res=;
- for(;;)
- {
- int rem=x%y;
- if(rem==)return y;
- x=y;
- y=rem;
- }
- }
- int cnt(int x)
- {
- int res=;
- for(;x;x-=x&-x,++res);
- return res;
- }
- int chk(int x)
- {
- int num=cnt(x);
- if(num!=)return -;
- else
- {
- for(int i=;i<;++i)
- {
- if((<<i)&x)return i;
- }
- }
- }
- int main()
- {
- std::ios::sync_with_stdio();
- //freopen("d:\\1.txt","r",stdin);
- int casenum;
- //cin>>casenum;
- //scanf("%d",&casenum);
- //for(int time=1;time<=casenum;++time)
- //for(int time=1;cin>>n;++time)
- {
- int n,m;
- cin>>n>>m;
- int d=gcd(n,m);
- //cout<<d<<endl;
- n/=d,m/=d;
- if(n==||m==)cout<<<<endl;
- else
- {
- cout<<chk(n+m)<<endl;
- }
- }
- return ;
- }
超内存的:
- #include <iostream>
- #include <cstdio>
- #include <cmath>
- #include <algorithm>
- #include <vector>
- #include <iomanip>
- #include <cstring>
- #include <map>
- #include <queue>
- #include <set>
- #include <cassert>
- #include <list>
- using namespace std;
- const double EPS=1e-;
- const int SZ=1e2+,INF=0x7FFFFFFF;
- const long long mod=;
- typedef long long lon;
- int n,sum[],arr[];
- bool chk(int x,int t)
- {
- int res=;
- if(x/n&&arr[x]<arr[x-n])++res;
- if(x%n&&arr[x]<arr[x-])++res;
- if(x/n!=n-)
- {
- if(t)
- {
- if(arr[x]<arr[x+n])++res;
- }
- else ++res;
- }
- if(x%n!=n-)
- {
- if(t)
- {
- if(arr[x]<arr[x+])++res;
- }
- else ++res;
- }
- return t?res==sum[x]:res>=sum[x];
- }
- bool dfs(int x)
- {
- //cout<<x<<endl;
- if(x==n*n)
- {
- // for(int i=0;i<n*n;++i)
- // {
- // cout<<arr[i]<<" ";
- // }cout<<endl;
- return ;
- }
- for(int i=;i<;++i)
- {
- arr[x]=i;
- if(x%n&&chk(x-,||((x-)/n==n-))==)continue;
- if(x/n&&chk(x-n,)==)continue;
- if(x==n*n-&&chk(x,)==)continue;
- //cout<<x<<" "<<i<<endl;
- if(dfs(x+))return ;
- //else cout<<x<<" "<<i<<" fail"<<endl;
- }
- arr[x]=;
- return ;
- }
- int main()
- {
- std::ios::sync_with_stdio();
- //freopen("d:\\1.txt","r",stdin);
- int casenum;
- //cin>>casenum;
- //scanf("%d",&casenum);
- //for(int time=1;time<=casenum;++time)
- //for(int time=1;cin>>n;++time)
- {
- cin>>n;
- for(int i=;i<n*n;++i)
- {
- cin>>sum[i];
- }
- if(n==)
- {
- if(sum[]==)cout<<<<endl;
- else cout<<"NO SOLUTION"<<endl;
- }
- else if(dfs())
- {
- for(int i=;i<n*n;++i)
- {
- if(i%n)cout<<" ";
- cout<<arr[i];
- if(i%n==n-)cout<<endl;
- }
- }
- else
- {
- cout<<"NO SOLUTION"<<endl;
- }
- }
- return ;
- }
超时的:
- #pragma comment(linker,"/STACK:1024000000,1024000000")
- #include <iostream>
- #include <cstdio>
- #include <cmath>
- #include <algorithm>
- #include <vector>
- #include <iomanip>
- #include <cstring>
- #include <map>
- #include <queue>
- #include <set>
- #include <cassert>
- #include <list>
- #define mkp make_pair
- using namespace std;
- const double EPS=1e-;
- const int SZ=1e2+,INF=0x7FFFFFFF;
- const long long mod=;
- typedef long long lon;
- int work(int x,int y,int x1,int y1,int s)
- {
- if(x<y)swap(x,y);
- if(x1<y1)swap(x1,y1);
- //cout<<x<<" "<<y<<" "<<x1<<" "<<y1<<endl;
- if(s!=&&x==x1&&y==y1)return -;
- x-=y;
- y*=;
- x1-=y1;
- y1*=;
- if(x<y)swap(x,y);
- if(x1<y1)swap(x1,y1);
- //if(s!=1&&x==x1&&y==y1)return -1;
- x1-=y1;
- y1*=;
- if(x==||y==)return s;
- return work(x,y,x1,y1,s+);
- }
- int main()
- {
- std::ios::sync_with_stdio();
- //freopen("d:\\1.txt","r",stdin);
- int casenum;
- //cin>>casenum;
- //scanf("%d",&casenum);
- //for(int time=1;time<=casenum;++time)
- //for(int time=1;cin>>n;++time)
- {
- int n,m;
- cin>>n>>m;
- if(n==||m==)cout<<<<endl;
- else if((n&)^(m&))cout<<-<<endl;
- else cout<<work(n,m,n,m,)<<endl;
- }
- return ;
- }
sgu 126 Boxes的更多相关文章
- 找规律 SGU 126 Boxes
题目地址:http://acm.sgu.ru/problem.php?contest=0&problem=126 /* 找规律,智商不够,看了题解 详细解释:http://blog.csdn. ...
- SGU 126 Boxes(模拟题|二进制)
Translate:Sgu/126 126. 盒子 time limit per test: 0.5 sec. memory limit per test: 4096 KB 有两个盒子. 第一个盒子里 ...
- SGU 126. Boxes --- 模拟
<传送门> 126. Boxes time limit per test: 0.25 sec. memory limit per test: 4096 KB There are two b ...
- Boxes - SGU 126(找规律)
题目大意:有两个箱子,一个箱子装了A个球,一个箱子装了B个球,可以从球多的那个箱子拿出来球少的箱子里面球的总数放在少的那个箱子里面,问能否把球全部放在一个箱子里面? 分析:很容易求出来最后放的拿一下一 ...
- SGU 分类
http://acm.sgu.ru/problemset.php?contest=0&volume=1 101 Domino 欧拉路 102 Coprime 枚举/数学方法 103 Traff ...
- 快速切题sgu126. Boxes
126. Boxes time limit per test: 0.25 sec. memory limit per test: 4096 KB There are two boxes. There ...
- 今日SGU 5.4
SGU 127 题意:给你n个数字,和m,k,问你有多少个数字的m次幂可以被k整除 收获:快速幂 #include<bits/stdc++.h> #define de(x) cout< ...
- SGU 495. Kids and Prizes
水概率....SGU里难得的水题.... 495. Kids and Prizes Time limit per test: 0.5 second(s)Memory limit: 262144 kil ...
- SGU Volume 1
SGU 解题报告(持续更新中...Ctrl+A可看题目类型): SGU101.Domino(多米诺骨牌)------------★★★type:图 SGU102.Coprimes(互质的数) SGU1 ...
随机推荐
- tomcat启动失败问题排除及解决办法 Server Tomcat v7.0 Server at localhost failed to start.
tomcat启动失败问题排除及解决办法 Server Tomcat v7.0 Server at localhost failed to start. 导致上面问题的原因可能有很多种,每种的解决办法都 ...
- 用rewrite把旧域名直接跳转到新域名的nginx配置
用rewrite把旧域名直接跳转到新域名的nginx配置 把下面代码保存到daziran.com.conf 放在nginx配置目录下 /etc/nginx/conf.d/ #把旧域名zdz8207直接 ...
- javashop技术培训总结,架构介绍,Eop核心机制
javashop技术培训一.架构介绍1.Eop核心机制,基于spring的模板引擎.组件机制.上下文管理.数据库操作模板引擎负责站点页面的解析与展示组件机制使得可以在不改变核心代码的情况下实现对应用核 ...
- 循环ajax请求问题
项目开发过程碰到过这种需求:需要循环发送ajax请求,请求参数和循环索引有关.第一次实现的时候用了类似下面的方法,结果发现发送到后端的参数数据都是最后一次循环的索引 for(var i=0; i< ...
- 如何用tomcat发布自己的Java项目
如何用tomcat发布自己的Java项目 tomcat是什么?它是一个免费的开放源代码的Web 应用服务器,属于轻量级应用服务器.我们用Java开发出来的web项目,通过tomcat发布出来,别人就可 ...
- QTQuick控件基础(1)
一.Item QtQuick所有的可视项目都继承自Item,它定义了可视化项目所有通用特性(x\y\width\height\anchors等)具体包括 1.作为容器 2.不透明性 没有设置opaci ...
- Python3基础 父,子类普通方法重名 子类方法覆盖父类方法
Python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 Conda ...
- jQuery 中 $( ) 函数的用法总结
摘要 jQuery对象: 具有jquery框架设置的所有功能的调用者, 就是该框架的对象 $又是什么?: $就是jQuery对象, jQuery对象为window的全局属性, 所以可以直接使用 如何自 ...
- 字符编码(ASCII、ANSI、GB2312、UTF-8等)系统梳理(转载)
引言 在显示器上看见的文字.图片等信息在电脑里面其实并不是我们看见的样子,即使你知道所有信息都存储在硬盘里,把它拆开也看不见里面有任何东西,只有些盘片.假设,你用显微镜把盘片放大,会看见盘片表面凹凸不 ...
- No compatible targets were found Do you wish to a add new Android Virtual Device ?
运行一个Android小程序时提示: No compatible targets were found Do you wish to a add new Android Virtual Device ...