Easy Hard 分析(Easy) 若$X=1$或$X=2n-1$无解,否则在正中间构造$X-1,X,X+1$, 其余位置升序铺入剩余数, 若$X-1$左侧数大于$X-1$那么$X-1$和$X$上方必定为$X$, $X+1$上方为$X+1$,可以发现比原来更接近$X$,显然到塔尖答案即为$X$ $ ...
分类:
其他好文 时间:
2021-03-06 14:41:14
阅读次数:
0
AT4724 [ABC128D] equeue 题意:给出序列$n<=50$长度大小,然后给出$k ? 100$操作,可以从头部或者尾部拿出一个元素放到手里或者将某个手里的元素塞到序列,求手里最大和。 题解:枚举从头拿和从尾拿的操作,然后可确定放手的次数,然后就贪心得放出负数的数,最后手里得数就是最 ...
分类:
其他好文 时间:
2021-03-05 13:14:21
阅读次数:
0
一个棋盘上有一个大小为n*m的矩阵,矩阵边缘在棋盘线上.现在你要操作k次,每一次都在上一个画好的矩阵中再画一个矩阵,要求被严格包含,边缘也不能重叠且必须在棋盘线上.问你一共有几种画法. ...
分类:
其他好文 时间:
2021-03-05 12:56:45
阅读次数:
0
题意 用六边形瓷砖拼成一个三角形,第i行有i个小瓷砖,问本质不同的方案数有多少。 两个方案本质不同指两个方案不能通过120度或者1270度旋转,或者通过对角线翻转变成另一种。 题解 第二次做$Burnside$引理的题目(其实是因为不会$Polya$) 这道题的置换群比较直观,每个操作都是一个置换。 ...
分类:
其他好文 时间:
2021-03-04 13:26:48
阅读次数:
0
static int tcp_open_socket(unsigned short port, const char *bindaddr, const char *ifname){ int fd = -1, n, af, opt; struct sockaddr_in si; struct sock ...
分类:
其他好文 时间:
2021-03-03 12:28:42
阅读次数:
0
1,将id列放在第一列 alter table cqc_xa.cqc_xa_diff_case modify id int unsigned auto_increment first; 2,增加自增id alter table test.student add column indexxx int( ...
分类:
数据库 时间:
2021-03-03 12:17:55
阅读次数:
0
逐像素浮点运算转换的,很慢,目测 1080p 只有 12fps 左右 sws_scale(img_convert_context, (const unsigned char *const *)p_frame->data, p_frame->linesize, 0, p_codec_context-> ...
分类:
其他好文 时间:
2021-02-26 12:53:55
阅读次数:
0
给定 N,求有多少 a,b,c 满足 $a \le b \le c \le n, a^2 + b^2 = c^2, a^2 - b = c$ ...
分类:
其他好文 时间:
2021-02-23 14:31:13
阅读次数:
0
百度网盘下载地址(964):点击下载 ? #include <reg52.h> #define uchar unsigned char #define uint unsigned int #include <intrins.h> /* 数码管段选定义 0 1 2 3 4 5 6 7 8 9 */ u ...
分类:
其他好文 时间:
2021-02-23 13:58:44
阅读次数:
0
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:
其他好文 时间:
2021-02-18 13:06:04
阅读次数:
0