problem: 595. Big Countries A country is big if it has an area of bigger than 3 million square km or a population of more than 25 million. Write a SQL ...
分类:
其他好文 时间:
2019-08-25 10:25:27
阅读次数:
129
题目:在一个2n*2n的网格中间画一个直径为2n-1的圆,问圆内部的格子以及和圆相交的格子个数。 思路:只要考虑1 / 4圆的点就行,用点到原点距离与半径比较,当格子左下方和右上方都在格子里时,格子在圆内部。 AC代码: ...
分类:
其他好文 时间:
2019-08-25 01:01:18
阅读次数:
93
https://www.acwing.com/solution/LeetCode/content/3785/ class Solution { private boolean flag; public boolean makesquare(int[] nums) { int temp = 0; fo ...
分类:
其他好文 时间:
2019-08-24 17:09:17
阅读次数:
71
本文介绍一个古老但是高效的求平方根的算法及其python实现,分析它为什么可以快速求解,并说明它为何就是牛顿迭代法的特例。 ...
分类:
编程语言 时间:
2019-08-24 16:55:38
阅读次数:
356
原文链接:https://www.cnblogs.com/xwl3109377858/p/11404261.html Educational Codeforces Round 71 (Rated for Div. 2) B - Square Filling You are given two mat ...
分类:
其他好文 时间:
2019-08-24 13:16:54
阅读次数:
114
CF1207B Square Filling 题意: 两个矩阵a,b,已知矩阵b,每次能修改b矩阵中相邻的四个格(b为空矩阵),使b变为a 解法: 枚举矩阵中的1,按题意修改,并把改过的四个点都标记一下。 注意每次枚举的点一定是未被标记过的,不然连pretest都过不去。 CODE: cpp inc ...
分类:
其他好文 时间:
2019-08-23 22:43:15
阅读次数:
104
代码存档 cpp include define maxn 100 using namespace std ; int n , m , flag = 0 , tim ; struct dy{ int x , y ; }ans[maxn maxn] ; int a[maxn][maxn] , vis[m ...
分类:
其他好文 时间:
2019-08-23 19:27:40
阅读次数:
80
错误处理:当程序处于错误状态可以用os.Exit(1)来中止运行自定义错误:err := errors.New("I am error")用fmt创建错误(和print一个样,它会创建一个自定义error,字符串就是格式化后的字符串)fmt.Errorf("math: square root of ...
分类:
其他好文 时间:
2019-08-21 20:05:33
阅读次数:
77
Little Elephant loves magic squares very much. A magic square is a 3?×?3 table, each cell contains some positive integer. At that the sums of integers ...
分类:
其他好文 时间:
2019-08-21 09:33:05
阅读次数:
119
前言 挖坑后续填坑 中文网站:https://www.liaohuqiu.net/cn/posts/leak-canary-read-me/ gitbub:https://github.com/square/leakcanary ...
分类:
移动开发 时间:
2019-08-20 14:06:04
阅读次数:
121