看一下题目大意: For a given positive integer n, please find the smallest positive integer x that we can find an integer y such that y^2 = n +x^2.。 自己翻译一下,不难 ...
分类:
其他好文 时间:
2020-05-25 12:06:37
阅读次数:
75
比赛爆零== 简单来说 题意就是 给一个N 然后给了4种操作的代价 求最小的代价。用DFS搜索 #include<bits/stdc++.h> using namespace std; typedef long long ll; int main () { ios::sync_with_stdio( ...
分类:
其他好文 时间:
2020-05-24 21:09:03
阅读次数:
79
建库 CREATE DATABASE: 修改数据库 ALTER DATABASE: 栗子: ...
分类:
数据库 时间:
2020-05-24 19:18:47
阅读次数:
67
查询最需要关注的问题:①resultType自动映射,②方法返回值; interface EmpSelectMapper: package com.atguigu.mapper; import java.util.List; import java.util.Map; import org.apac ...
分类:
其他好文 时间:
2020-05-24 18:05:38
阅读次数:
61
A - Candies 题解:给出一个数n,求x,使得 x+2x+4x+.....+2^(k-1)x=n成立 由此可得出x=n/(1+2+4+...+2^(k-1));不用求k的值 #include<bits/stdc++.h> using namespace std; int main() { i ...
分类:
其他好文 时间:
2020-05-24 18:05:18
阅读次数:
51
参照《算法竞赛入门经典(第二版)》,这上面写得很清楚。 核心代码如下: 倒推十分巧妙。 ...
分类:
其他好文 时间:
2020-05-24 16:55:16
阅读次数:
46
有一组数,1,1,2,3,5,8,……,用递归算法算出第三十个数 1 using System; 2 3 namespace ConsoleApp1 4 { 5 class Program 6 { 7 static void Main(string[] args) 8 { 9 int sLeft = ...
启动rabbitmq docker run rabbitmq -p 5672:5672 -p 15672:15672 --name rbq_cn1 查看容器 root@ecs-s6-medium-2-linux-20191230105810:~# docker psCONTAINER ID IMAG ...
分类:
其他好文 时间:
2020-05-24 10:11:36
阅读次数:
714
先贴个整数快速幂 #include<bits/stdc++.h> using namespace std; typedef long long int ll; ll b,p,k,ans=1,res; int main(){ scanf("%lld%lld%lld",&b,&p,&k); cout<< ...
分类:
其他好文 时间:
2020-05-24 00:46:48
阅读次数:
56
1、新建空白类,然后继承QWidget 此时会生成Test.h和Test.cpp两个文件,由于继承了QWidget,但是并没有绘制界面【onPaint里draw..】,所以将这个类生成的对象show一下,界面时什么都没有的 2、新建QWidget界面子类 此时会生成3个文件,Test.h、Test. ...
分类:
其他好文 时间:
2020-05-24 00:32:51
阅读次数:
91