2024年10月19日

摘要: 炼油厂将ABC三种原油加工成甲乙丙三种汽油,一桶原油加工成一桶汽油的费用为4元,每天至多能加工汽油14000桶,原油的买入价,买入量,辛烷值,硫的含量以及汽油的卖出价,需求量辛烷值和硫含量由下表给出,如何安排 生产计划使利润最大 一般来说,做广告可以增加销售,估计一天向一种汽油投入一元广告费,可是该 阅读全文
posted @ 2024-10-19 10:46 lkhshnu 阅读(10) 评论(0) 推荐(0) 编辑

2024年10月4日

摘要: 完 成 日 期 2024 年 10 月 1题目 8.已知某工厂计划生产1,2,3三种产品,各产品需要在ABC设备加工。有关数据如下: 1 2 3 每月设备有效台时 A 8 2 10 300 B 10 5 8 400 C 2 13 10 420 单位产品利润/千元 3 2 2.9 (1).如何发挥生产 阅读全文
posted @ 2024-10-04 14:56 lkhshnu 阅读(25) 评论(0) 推荐(0) 编辑

2024年9月17日

摘要: 一道简单的模拟 。。。 include include using namespace std; int main() { const int N=1010; bool drop[N]={false}; int n,m,i,j,cnt=0,cnt1=0; cin>>n; int y; int sum 阅读全文
posted @ 2024-09-17 11:44 lkhshnu 阅读(5) 评论(0) 推荐(0) 编辑
 
摘要: include <bits\stdc++.h> using namespace std; const int maxn=35; int n,x,a[maxn],sum=0; int best=1e9; void dfs(int a[],int sum,int index){ if(sum>=x) { 阅读全文
posted @ 2024-09-17 11:09 lkhshnu 阅读(5) 评论(0) 推荐(0) 编辑

2024年9月16日

摘要: 先找到斜线的起始点 然后输出斜线上各点 include <bits\stdc++.h> typedef long long ll; using namespace std; int main() { int n,i,j,sum,cnt,x,y; cin>>n; int a[501][501]; in 阅读全文
posted @ 2024-09-16 11:56 lkhshnu 阅读(4) 评论(0) 推荐(0) 编辑
 
摘要: 常规质数因子 带相关资料抄写 稍加修改指数的筛选部分 include include<math.h> typedef long long ll; using namespace std; bool isprime(ll n){ int i; if(n<=1) return false; int sq 阅读全文
posted @ 2024-09-16 10:50 lkhshnu 阅读(17) 评论(0) 推荐(0) 编辑

2024年9月15日

摘要: include <bits/stdc++.h> using namespace std; const int maxn=1e4+1; int mar[maxn]; void tmar(int mar[],const int n,const int m){ int mat[n+1][m+1],mat1 阅读全文
posted @ 2024-09-15 12:01 lkhshnu 阅读(6) 评论(0) 推荐(0) 编辑

2024年9月14日

摘要: 小细节多 读题要认真 注意是连续的段 思路较简单 include using namespace std; int main() { int n,k,t; int i,j; scanf("%d%d%d",&n,&k,&t); int x1,y1,x2,y2; int x3,y3; int cnt2= 阅读全文
posted @ 2024-09-14 17:43 lkhshnu 阅读(4) 评论(0) 推荐(0) 编辑

2024年9月11日

摘要: 一道比较明显的差分 利用查询递增性质 减少时间复杂度到o{n} include <bits/stdc++.h> using namespace std; const int N=2e5+10; int main() { int dif[N]={0}; int n,m,k,x,j,i,sum = 0, 阅读全文
posted @ 2024-09-11 11:27 lkhshnu 阅读(6) 评论(0) 推荐(0) 编辑

2024年9月9日

摘要: 小模拟 规模确实小 直接模拟不用搞优化 结构体起手模拟窗口 记录编号和优先级 每次点击更新优先级 include <bits/stdc++.h> using namespace std; struct l{ int x1,y1; int x2,y2; int seq; int pri; }; l l 阅读全文
posted @ 2024-09-09 11:03 lkhshnu 阅读(6) 评论(0) 推荐(0) 编辑