Ahuang1A

导航

2023年12月25日 #

凡凡的联系方式

摘要: QQ:1339057308 VX:18161074406 阅读全文

posted @ 2023-12-25 19:56 黄奕钧 阅读(7) 评论(0) 推荐(0) 编辑

2023年11月22日 #

信息学竞赛规范

摘要: 1.纪律 2.(1)代码前:注释时空复杂度、知识点、解题步骤 (2)代码中:注释代码作用 (3)代码后:提交、解题时间、测试数据(五组) 测试数据:1组样例(sample)、4组自编(极值、最小值、负数、环) 阅读全文

posted @ 2023-11-22 21:05 黄奕钧 阅读(4) 评论(0) 推荐(0) 编辑

2023年7月24日 #

2048!

摘要: https://hczhcz.github.io/my-2048/index.html?t=Ploblem+A&v2=%E5%A4%8F&v4=%E5%95%86&v8=%E5%91%A8&v16=%E7%A7%A6&v32=%E6%B1%89&v64=%E4%B8%89%E5%9B%BD&v128 阅读全文

posted @ 2023-07-24 10:44 黄奕钧 阅读(101) 评论(0) 推荐(0) 编辑

2023年7月23日 #

7.23

摘要: 1330,1249,1253 阅读全文

posted @ 2023-07-23 22:06 黄奕钧 阅读(20) 评论(0) 推荐(0) 编辑

2023年7月22日 #

7.22 Day 3

摘要: 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int n,m,ct,dir[4][2]={{0,1},{0,-1},{1,0},{-1,0}}; 5 char mp[101][101]; 6 bool vis[101][101]; 7 vo 阅读全文

posted @ 2023-07-22 21:51 黄奕钧 阅读(5) 评论(0) 推荐(0) 编辑

组合的输出 dfs

摘要: #include<bits/stdc++.h> using namespace std; int a[101]; int m,n; void s(int k){ int i; if(k>m){ for(i=1;i<=m;i++){ cout<<setw(3)<<a[i]; } cout<<endl; 阅读全文

posted @ 2023-07-22 15:32 黄奕钧 阅读(2) 评论(0) 推荐(0) 编辑

DP 动态规划 采药

摘要: #include<bits/stdc++.h> using namespace std; int t,m,w[105],v[105],f[105][1005]; int main() { cin>>t>>m; for(int i=1; i<=m; i++) cin>>w[i]>>v[i]; for( 阅读全文

posted @ 2023-07-22 10:01 黄奕钧 阅读(2) 评论(0) 推荐(0) 编辑

EG.9-2数字三角形 代码记录

摘要: #include<bits/stdc++.h> using namespace std; int a[1005][1005]; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=i;j++){ cin>>a[i][j]; 阅读全文

posted @ 2023-07-22 09:59 黄奕钧 阅读(5) 评论(0) 推荐(0) 编辑

2023年7月21日 #

2023/7/21 Day 2

摘要: 今日已完成:递归 1201,1202,1207 阅读全文

posted @ 2023-07-21 22:00 黄奕钧 阅读(5) 评论(0) 推荐(0) 编辑

2023年7月20日 #

2023/7/20 第一课内容

摘要: 今日完成: 1150,1151,1154,1158,1159,1160 阅读全文

posted @ 2023-07-20 21:11 黄奕钧 阅读(8) 评论(0) 推荐(0) 编辑