黑科技
LBJHan
经历过就是财富
展开
-
制作测试数据
#include <bits/stdc++.h> using namespace std;int a[100];int main(){ freopen("C:\\Users\\DELL\\Desktop\\01.txt", "r", stdin); freopen("C:\\Users\\DELL\\Desktop\\02.txt", "w", stdout); /...原创 2018-05-31 17:36:30 · 658 阅读 · 0 评论 -
模板
数位dp;int dp[][][]... , digit[](存每一位上的最大值);int dfs(int per, int state, int zero, bool limit){if(pre==-1) return 1;if(!limit && dp[pre][state]!=-1) return dp[pre][state];int up=limit?d...原创 2018-07-14 10:18:11 · 401 阅读 · 0 评论 -
linux系统IO设备
命令行输入:xinput list 查看IO设备编号(id);xinput set-prop id "Device Enabled" 0 关闭编号为id的设备;xinput set-prop id "Device Enabled" 1 开启编号为id的设备;AT Translated Set 2 keyboard 笔记本自带键盘;AT Translated...原创 2018-08-05 13:43:33 · 513 阅读 · 0 评论 -
输入外挂
inline int IN(){ char ch=getchar(); int f=1,x=0; while((ch<'0'||ch>'9')&&(ch!='-')) ch=getchar(); if(ch=='-') f=-1,ch=getchar(); while(ch>='0'&&ch<='9') x=(x<<1...原创 2018-08-15 10:43:50 · 440 阅读 · 0 评论 -
程序 对拍
将所有需要的程序放到一个文件夹下;#include<cstdio>#include<cstdlib>#include<ctime>int main(){ long s,t; while(1){ system("cls"); do{ system("data > try.i...原创 2018-09-05 12:28:15 · 223 阅读 · 0 评论 -
set c++
#include <bits/stdc++.h>using namespace std;int main(){ set<int> s; set<int>::iterator it; int a[10]; for(int i=0; i<10; i++) a[i]=i*2; //insert(); for(int i=0; i<10; ...原创 2018-09-03 11:01:10 · 248 阅读 · 0 评论 -
防溢出
#pragma comment(linker, "/STACK:1024000000,1024000000")原创 2018-09-14 14:56:36 · 349 阅读 · 0 评论 -
ios::sync_with_stdio(false);
ios::sync_with_stdio(false);原创 2019-05-21 21:06:16 · 231 阅读 · 0 评论