N children are playing Rochambeau (scissors-rock-cloth) game with you. One of them is the judge. The rest children are divided into three groups (it i ...
分类:
其他好文 时间:
2020-07-18 00:42:12
阅读次数:
76
最近公司要部署监控,所以一直在研究小米的开源监控系统open-falcon。一切安装好后,启动open-falcon。open-falcon start [falcon-graph] 373[falcon-hbs] 388[falcon-judge] 399[falcon-transfer] 411 ...
分类:
其他好文 时间:
2020-07-12 10:38:40
阅读次数:
88
主函数 进入关键函数judge,IDA出错 应该是主函数中对judge函数异或导致的,可以写脚本还原函数 python脚本(后缀名要改为.py): #coding=utf-8 judge=0x600B00 for i in range(182): addr=0x600B00+i byte=get_b ...
分类:
其他好文 时间:
2020-07-05 22:50:35
阅读次数:
109
题目 思路 看到数据在20以内,果断跑状压,但是由于我太弱了,最后没有调过来,然后在状压的基础上,做了这道题, 按照状压的思路,首先枚举状态,根据题目要求筛去不合法的情况 判断合法的函数(judge)内容 if(Q(x)!=(k+1))return 0,代表,在房间数大于法宝数的情况下,如果法宝没有 ...
分类:
其他好文 时间:
2020-07-04 20:30:28
阅读次数:
60
今日的简单一题 1 #include<iostream> 2 3 using namespace std; 4 5 int main() { 6 long a = 0, b = 0, c = 0; 7 int n = 0; 8 string judge[10]; 9 cin >> n; 10 for ...
分类:
其他好文 时间:
2020-06-28 22:54:29
阅读次数:
111
平台: UVa Online Judge 題號: 1584 - Circular Sequence 題目連結: https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=448&page=show_probl ...
分类:
其他好文 时间:
2020-06-27 22:48:22
阅读次数:
173
不墨迹 #include <iostream> #include <algorithm> using namespace std; const int maxn = 1e6; int a[maxn], b[maxn]; int main() { #ifndef ONLINE_JUDGE freope ...
分类:
其他好文 时间:
2020-06-26 18:16:06
阅读次数:
64
题目做法大概就是点分治然后背包 前置知识 点分治 应用场景: 求树上距离为k的点对数|是否存在 路径为k且有限制条件 总之就是dfs暴力会超时的优化 点分治第一步首先要找到一棵树的重心 然后再根据重心来进行分治 judge i 距离当前根为i的点是否存在 dis i 点i与当前根的距离 点分治模板 ...
分类:
其他好文 时间:
2020-06-25 21:29:02
阅读次数:
48
在搭建UOJ中,发生了一些问题,解决后记录于此。 There is something wrong with database >_<.... Connection refused 方法: docker exec -it uoj /bin/bash service mysql restart 未完待 ...
分类:
其他好文 时间:
2020-06-25 12:12:26
阅读次数:
79
1.When a lawyer says "objection" during court, he is telling the judge that he thinks his opponent violated a rule of procedure. The judge's ruling de ...
分类:
其他好文 时间:
2020-06-18 11:00:24
阅读次数:
49