A 【题意】签到题 B 【题意】长度为n的字符串,由n-2个a和2个b组成,按照字典序排序,问第k个 【题解】读题细心,最开始以为是ab代表01,搞二进制转化,实际上上面是正确题意,直接算b的位置即可 C 【题意】长度为n的由0,1,2组成的序列,分成两个数字,让他们的最小值最大 【题解】所以我们只 ...
分类:
其他好文 时间:
2020-04-06 12:06:45
阅读次数:
83
A Majestic 10 就是判断比十大的数字的个数。签到提 #include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; while(n--) { int cnt = 0,a[3]; cin>>a[0]>>a[1 ...
分类:
其他好文 时间:
2020-04-05 22:06:30
阅读次数:
58
集合点的目的 1、让各个线程(用户)步调一致,对系统进行加压 2、达到模拟真实并发访问的效果 例如:进行签到,要求五分钟内进行签到完毕,此时可以用集合点来完成 创建集合点 Number of Simulated Users to Group by:集合多少人后再执行请求(也就是执行的线程数)注意:等 ...
分类:
其他好文 时间:
2020-04-05 20:32:23
阅读次数:
66
A.Majestic 10 签到题。 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<bitset> #include<cassert> #include<cctype> #incl ...
分类:
其他好文 时间:
2020-04-05 20:25:53
阅读次数:
73
水题 #include<bits/stdc++.h> using namespace std; int a, b, k; int main(){ cin >> a >> b >> k; while(k--) if(a>b) a /= 2; else b /= 2; cout << max(a,b) ...
分类:
其他好文 时间:
2020-04-05 13:58:05
阅读次数:
55
1. SQL题目 题目:有一张用户签到表【t_user_attendence】,标记每天用户是否签到(说明:该表包含所有用户所有工作日的出勤记录) ,包含三个字段:日期【fdate】,用户id【fuser_id】,用户当天是否签到【fis_sign_in:0否1是】; 问题1:请计算截至当前每个用户 ...
分类:
其他好文 时间:
2020-04-03 13:43:10
阅读次数:
281
C 签到题,计算前缀和,把所有的负项加入到一个set中,如果当前前缀和小于0,则从set中从小到大弹出负项,并且把弹出的项加回到前缀和中。 ...
分类:
其他好文 时间:
2020-03-31 19:20:01
阅读次数:
114
A.Majestic 10 大致题意就是指看有几个大于等于10,直接按照题意输出就行,签到题 代码: #include<stdio.h> int main(){ int n,a,b,c; scanf("%d",&n); while(n--){ scanf("%d %d %d",&a,&b,&c); ...
分类:
其他好文 时间:
2020-03-31 14:07:44
阅读次数:
66
A. 签到题1。 #include<bits/stdc++.h> #define fi first #define sd second #define lson (nd<<1) #define rson (nd+nd+1) #define PB push_back #define mid (l+r> ...
分类:
其他好文 时间:
2020-03-29 12:51:24
阅读次数:
76
题目 给定一个单词列表,我们将这个列表编码成一个索引字符串 S 与一个索引列表 A。 例如,如果这个列表是 ["time", "me", "bell"],我们就可以将其表示为 S = "time bell " 和 indexes = [0, 2, 5]。 对于每一个索引,我们可以通过从字符串 S 中 ...
分类:
编程语言 时间:
2020-03-28 18:01:54
阅读次数:
91