Codeforces 527A Glass Carving

题意:给你一张长方形的纸,你每一次撕掉最大的那个正方形,然后剩下来一块矩形,再继续对剩下的矩形进行这个操作,一直到这个剩下的矩形是个正方形。

解题思路:递归

解题代码:

 1 // File Name: a.cpp
 2 // Author: darkdream
 3 // Created Time: 2015年03月18日 星期三 00时41分16秒
 4
 5 #include<vector>
 6 #include<list>
 7 #include<map>
 8 #include<set>
 9 #include<deque>
10 #include<stack>
11 #include<bitset>
12 #include<algorithm>
13 #include<functional>
14 #include<numeric>
15 #include<utility>
16 #include<sstream>
17 #include<iostream>
18 #include<iomanip>
19 #include<cstdio>
20 #include<cmath>
21 #include<cstdlib>
22 #include<cstring>
23 #include<ctime>
24 #define LL long long
25
26 using namespace std;
27 LL solve(LL a, LL b)
28 {
29
30    if(b > a )
31        swap(a,b);
32    if(b == 0 )
33        return 0;
34    return a/b + solve(b,a%b);
35 }
36 int main(){
37   LL n , m;
38   scanf("%lld %lld",&n,&m);
39   printf("%lld\n",solve(n,m));
40 return 0;
41 }

时间: 2024-10-19 02:44:37

Codeforces 527A Glass Carving的相关文章

Codeforces 527C Glass Carving(Set)

题意  一块w*h的玻璃  对其进行n次切割  每次切割都是垂直或者水平的  输出每次切割后最大单块玻璃的面积 用两个set存储每次切割的位置   就可以比较方便的把每次切割产生和消失的长宽存下来  每次切割后剩下的最大长宽的积就是答案了 #include <bits/stdc++.h> using namespace std; const int N = 200005; typedef long long LL; set<int>::iterator i, j; set<i

Codeforces 527C Glass Carving

vjudge 上题目链接:Glass Carving 题目大意: 一块 w * h 的玻璃,对其进行 n 次切割,每次切割都是垂直或者水平的,输出每次切割后最大单块玻璃的面积: 用两个 set 存储每次切割的位置,就可以比较方便的把每次切割产生和消失的长宽存下来(用个 hash 映射数组记录下对应值的长宽的数量即可,O(1) 时间维护),每次切割后剩下的最大长宽的积就是答案了: 1 #include<cstdio> 2 #include<cstring> 3 #include<

Codeforces 527C Glass Carving (最长连续0变形+线段树)

Leonid wants to become a glass carver (the person who creates beautiful artworks by cutting the glass). He already has a rectangular w mm ?×? h mm sheet of glass, a diamond glass cutter and lots of enthusiasm. What he lacks is understanding of what t

Codeforces 528A Glass Carving STL模拟

题目链接:点击打开链接 题意: 给定n*m的矩阵,k个操作 2种操作: 1.H x 横向在x位置切一刀 2.V y 竖直在y位置切一刀 每次操作后输出最大的矩阵面积 思路: 因为行列是不相干的,所以只要知道每次操作后行的最大间距和列的最大间距,相乘就是最大面积 用一个set维护横向的所有坐标点,一个multiset维护横向的间距. 每次对行操作x则在set中找到比x大的最小数 r 和比x小的最大数l ,操作前的间距dis = r-l,在multiset中删除dis并插入r-x 和x-l.再在se

C. Glass Carving (CF Round #296 (Div. 2) STL--set的运用)

C. Glass Carving time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Leonid wants to become a glass carver (the person who creates beautiful artworks by cutting the glass). He already has a re

Codeforces Round #296 (Div. 2) C. Glass Carving(想法题)

传送门 Description Leonid wants to become a glass carver (the person who creates beautiful artworks by cutting the glass). He already has a rectangular wmm  ×  h mm sheet of glass, a diamond glass cutter and lots of enthusiasm. What he lacks is understa

C. Glass Carving 正着做或者倒着做都可以

http://codeforces.com/problemset/problem/527/C 这题总体思路就是,每画一条线,然后就找到x间距的最max值和y间距的最max值,相乘就是当前的ans 那么我需要维护这样的一个数列,每次往里面添加一个元素,然后查询相邻两个元素的差值的最大值. 倒着做比较简单,首先把所有元素插上去,然后最大值直接暴力算一次.然后后来只有删除操作,这个操作只会让最大值变大. 每次删除后,检查上面和下面的新间距,和最大值比较一下就好. #include <bits/stdc

#296 (div.2) C.Glass Carving

1.题目描述:点击打开链接 2.解题思路:本题要求每切一刀,输出目前的最大玻璃的面积.这道题的思路很明显:每次切完后找目前的最大长度,最大宽度,相乘即可.不过问题的关键是如何快速的找到这个最大值. 一开始我没有太好的思路,想用数组,但总感觉数组力不从心,不知道怎么才能很好地更新切完后的长度值,也不知道如何快速的找到这个最大值.接着想到了STL中的set,可以把所有的切割位置存放在set中,然后逐个找最大值.不过这样的结果就是效率过低,导致TLE了.看了别人的代码才恍然大悟:可以直接除掉被切割的线

C. Glass Carving

这道题主要是 运用set和multiset 题意就是给你一个w*h大小的长方体,每次进行一个操作,然后看每次操作完之后的剩余的最大的矩形的面积 这个过程的结果在小长方形的玻璃碎片.不移动新制造的玻璃碎片.特别是,削减将每个片段的玻璃经过成更小的碎片. 意思就是碎的也不移动,不管什么时候长方体的位置都没有变,变得只是这个长方体成为了碎片 所以用set  记录被切割的位置 用 multiset 记录现在完整方块的长度与宽度,并且每一次要把切割位置的两边的相距长度从这个集合里面减掉 #include