#include "windows.h"#include "stdio.h" typedef unsigned char U1;typedef unsigned short U2;typedef unsigned long U4;typedef signed char S1;typedef sign ...
分类:
其他好文 时间:
2020-09-18 02:25:33
阅读次数:
37
一、scanf()转换说明中的修饰符 转换说明 含义 * 抑制赋值,示例:“%*d" 数字 最大字段宽度,输入达到最大字段宽度处,或者第一次遇到空白字符为止,示例:"%10s" hh 把整数作为signed char 或者 unsigned char 类型读取 ll 把整数作为long long或者 ...
分类:
其他好文 时间:
2020-09-18 00:34:59
阅读次数:
30
charDec2Hex(unsignedintiDec){charcResult;if(iDec>=0&&iDec<=9){cResult=iDec+‘0‘;}elseif(iDec>=10&&iDec<=15){cResult=iDec-10+‘A‘;}returncResult;}
分类:
其他好文 时间:
2020-09-18 00:25:57
阅读次数:
24
这种题目很容易就联想到独立算贡献,某条边的贡献就是他的权值和底下叶子节点的数量相关。 我们用优先队列的方法取最大,记得算大小的时候是按减一半的贡献再算 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef ...
分类:
其他好文 时间:
2020-09-17 13:36:21
阅读次数:
28
线程池处理异步任务队列 /// <author>cxg 2020-9-3</author> /// 支持d7以上版本,更低版本没有测试,支持跨OS unit tasks; interface uses {$IFDEF mswindows} Windows, {$ENDIF} {$IFDEF posi ...
分类:
编程语言 时间:
2020-09-16 12:43:31
阅读次数:
71
给定长度为 $n$ 的数列,每个数都在 $[1,n]$ 间,回答 $m$ 个询问,每次给定一个区间 $[l,r]$,问其中有多少对数间存在倍数关系。 ...
分类:
编程语言 时间:
2020-09-11 14:19:51
阅读次数:
42
I have assigned relationship PRDLOCS to product category MAT_HAWA in CRM: And I create a product based on category MAT_HAWA. To my surprise, I could n ...
分类:
其他好文 时间:
2020-09-04 17:15:33
阅读次数:
42
http://acm.hdu.edu.cn/showproblem.php?pid=6880 根据长度为n的排列a,构造长度n-1的序列b 思路:DP 官方题解: 代码: #include<iostream> #include<cstdio> #include<cstring> #include<a ...
分类:
其他好文 时间:
2020-09-03 17:00:42
阅读次数:
38
#include <reg52.h>#include <intrins.h> sbit LED0 = P0^0;sbit LED1 = P0^1;sbit LED2 = P0^2;sbit LED3 = P0^3;sbit LED4 = P0^4;sbit LED5 = P0^5;sbit LED6 ...
分类:
其他好文 时间:
2020-08-28 14:25:59
阅读次数:
43
给你一个整数数组 arr,请你判断数组中是否存在连续三个元素都是奇数的情况:如果存在,请返回 true ;否则,返回 false 。 示例 1: 输入:arr = [2,6,4,1]输出:false解释:不存在连续三个元素都是奇数的情况。示例 2: 输入:arr = [1,2,34,3,4,5,7, ...
分类:
编程语言 时间:
2020-08-19 19:42:08
阅读次数:
77