#include <easyx.h> #include <conio.h> #include <list> using namespace std; int sx = 25; int sy = 25; int x; int y; char ch = 'd'; char score[12]; int ...
分类:
其他好文 时间:
2020-09-17 16:07:41
阅读次数:
25
错误:找不到实体类 解决办法:放错了包,在相应包的平行位置创建了相同的包所以找不到实体类 DEBUG [main] - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. DEBUG ...
分类:
其他好文 时间:
2020-09-17 16:04:31
阅读次数:
55
链接Miku dfs就行了 #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; int head[100001]; int p; int n; int m; in ...
分类:
其他好文 时间:
2020-09-17 15:43:29
阅读次数:
24
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
这种题目很容易就联想到独立算贡献,某条边的贡献就是他的权值和底下叶子节点的数量相关。 我们用优先队列的方法取最大,记得算大小的时候是按减一半的贡献再算 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef ...
分类:
其他好文 时间:
2020-09-17 13:36:21
阅读次数:
28
#include <iostream> #include <cstdio> using namespace std; int dp[105][105],dpb[105][105]; int main(){ int n;cin>>n; for(int i=1;i<=n;i++){ cin>>dp[i] ...
分类:
其他好文 时间:
2020-09-17 13:35:44
阅读次数:
20
读题比较恶心,看到题目就不想写了(),手写了个逻辑理了半天。直接getline会有20分的点超时,手写读入过了,getchar大法好。 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int maxn=10000010; 4 int ...
分类:
其他好文 时间:
2020-09-17 13:30:56
阅读次数:
42
1.对过滤字段进行了函数处理 对字段做了函数计算,就用不上索引了 比如对时间类型的处理 select month(now()) 2.发生了字段类型的隐式转换 尤其在存数据期时一定要注意,为数值类型 过滤值为字符型--走索引 过滤值为数值型--字段的vachar发生隐式转换 相当于执行了函数 cast ...
分类:
数据库 时间:
2020-09-17 13:25:44
阅读次数:
27
测试窗体为: 直接上代码: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using ...
分类:
数据库 时间:
2020-09-17 12:31:54
阅读次数:
43
20行写完极其害怕 只能跑1e5的数据,那个1e6强制在线的开o2只有20pts QAQ 不用reserve也可以过,不过开了之后200ms的点只要130-140ms #include<bits/stdc++.h> using namespace std; #define ll long long ...
分类:
其他好文 时间:
2020-09-17 12:26:24
阅读次数:
24