摘要: 1.数字三角形。acwing 898. 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 const int N = 520,INF = 1e9; 5 int n; 6 int a[N][N]; //表示每一个点 7 int f[N][N]; 阅读全文
posted @ 2023-11-20 18:52 rw156 阅读(29) 评论(0) 推荐(0)