上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页
摘要: 看好久题目了,题目大意是给定三个位数A,B,C和一个k,要求求所有满足要求的a+b=c等式中的第k个等式 等式按字典序由小到大枚举,例如1+9=10和2+6=8中1+9=10比2+6=8小 思路我们首先求出a,b,c的取值范围,然后先确定a,对于每一个确定的a都有一个确定的b和c区间与之对应,并且a 阅读全文
posted @ 2023-06-20 10:48 突破铁皮 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 昨天晚上卡B题了,掉大分,qwq 现在回想起来昨天没反应过来 题目要求为公司节省最多的钱 我们可以发现如果n个人,每个人的分的钱都小于g/2且者n个人分的钱加起来恰好为k*g的话则公司一分钱都不用花 第一种情况 假设每个人分的钱都为h则最理想的情况为h*n>=k*g且h<g/2,即h=g/2-1 如 阅读全文
posted @ 2023-06-19 20:07 突破铁皮 阅读(151) 评论(5) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <cstring> #include <algorithm> #include <cmath> using namespace std; const int N=2e5+10; typedef long l 阅读全文
posted @ 2023-06-17 16:00 突破铁皮 阅读(41) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstring> using namespace std; const int N=2e5+10; int a[N],res[N]; int t; int main(){ cin>>t; while(t--){ int n; cin>>n; 阅读全文
posted @ 2023-06-16 22:12 突破铁皮 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 今天在写题目的时,对的思路但是一直卡了一个点,后来经过查找原来是floyd算法忽略的一个小细节,以前从来还没有注意到这个小细节,现在把这个细节记录下来 这是原本的代码 for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ for(int k=1;k<=n;k++ 阅读全文
posted @ 2023-06-16 18:01 突破铁皮 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 学生打卡系统加0.5 求一个数组中所有子数组和的最大值加1 地铁系统加0.5 分页查询加0.5 阅读全文
posted @ 2023-06-16 13:12 突破铁皮 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc 阅读全文
posted @ 2023-06-10 12:34 突破铁皮 阅读(8) 评论(0) 推荐(0) 编辑
摘要: server.port=8080 spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3307/teachmanger?useSSL=false 阅读全文
posted @ 2023-06-10 12:30 突破铁皮 阅读(12) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2023-06-10 12:29 突破铁皮 阅读(448) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>登录页面</title> <script src="http://code.jquery 阅读全文
posted @ 2023-06-10 12:28 突破铁皮 阅读(92) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页