摘要:
目录 动态链接库的基本调用 MessageBox不直接调用 远程线程注入 DLL写法 动态链接库的基本调用 #include<stdio.h> #include<Windows.h> #include<Psapi.h> //有头文件的话可以直接调用头文件 //没有的话就用函数指针 typedef i 阅读全文
摘要:
思路: 也就是求各自字符串的逆序对然后进行排序输出 #include<iostream> #include<utility> #include<algorithm> using namespace std; const int N=2e5+10; pair<int,pair<int,string> 阅读全文
摘要:
题目: Sample 1 InputcopyOutputcopy 2 2 3 1 2 2 3 4 3 3 5 3 4 3 4 1 25 50 思路: 把n+m看成一个整体,而set不包括重复的内容,因此n+m - set 就是不同的元素(即是多出的元素就是重复了的元素个数) 代码:用cin cout 阅读全文
摘要:
目录 题目: 证明:编辑 解题思路: 代码: 题目: Our chemical biologists have invented a new very useful form of life called stripies (in fact, they were first called in R 阅读全文