本文旨在介绍网络安全下公钥、私钥、证书等相关的介绍,与大家一起探讨网络安全中的那些事
分类:
其他好文 时间:
2020-10-07 20:55:58
阅读次数:
37
Solution 我们考虑在第 \(i\) 步时,如果此时是 \(Allen\) ,他会将 \(x_s=t\) ( $0\leq s\leq n,0\leq t\leq 1$ ),此时的 \(v_{s,t}\) 为最大,那么 \(v_{v,1-t}\) 就是最小的,也就是 \(Bessie\) 所做 ...
分类:
其他好文 时间:
2020-10-06 20:44:34
阅读次数:
29
1419A - Digit Game a题只需要简单判断奇偶数的情况就可以解决。题目第一次读起来稍微有些复杂,理解后直接模拟过程即可 代码如下 #include <bits/stdc++.h>using namespace std; int main() { int t; cin>>t;while ...
分类:
其他好文 时间:
2020-09-23 23:33:32
阅读次数:
36
这是一道x64的elf逆向题。 先进入主函数,定位到输入输出和一个叫sudoku的全局变量数组: sudoku的意思是数独,所以定位到sudoku数组的位置,将其提出来: 这里我犯了一个错误,这些数据在内存中存储的时候是小端序的int,我提出来以后为了简洁只写了两位,导致我后面分析的时候一直把它当成 ...
分类:
其他好文 时间:
2020-09-18 17:13:51
阅读次数:
38
--1.查看表空间的名称及大小SELECT t.tablespace_name,round(SUM(bytes/(1024*1024)),0) as ts_size FROM dba_tablespaces t ,dba_data_files dWHERE t.tablespace_name = d ...
分类:
数据库 时间:
2020-09-17 23:34:55
阅读次数:
46
You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time ...
分类:
其他好文 时间:
2020-09-17 22:49:35
阅读次数:
38
参考:https://labuladong.gitbook.io/algo/dong-tai-gui-hua-xi-lie/dong-tai-gui-hua-zhi-bo-yi-wen-ti 问题: 给定一堆石子的得分。A和B两个人进行如下游戏, 轮流,从石堆的两边选择一个石子,最终获得得分最大的人 ...
分类:
其他好文 时间:
2020-09-17 20:37:47
阅读次数:
21
https://github.com/januwA/GameCheat #include "pch.h" #include <iostream> #include <Windows.h> #include "GameCheat.h" using namespace std; void __stdca ...
分类:
编程语言 时间:
2020-09-17 15:31:59
阅读次数:
36
Oracle的数据存储结构 表空间(tablespace)--Oracle中最大的逻辑存储单位 数据文件(data file)--表空间物理存储载体 段(segment)--Oracle中所有占用空间的对象的总称 extend--段的组成单位 数据块(data block)--extend的组成单位 ...
分类:
数据库 时间:
2020-09-17 12:59:14
阅读次数:
25