摘要: include include include using namespace std; struct Chocolate{ int h,w; }; int main(){ int N,K; cin>>N>>K; vectorchocs(N); int max_s=0; for(int i=0;i< 阅读全文
posted @ 2025-12-25 21:05 Cx330。 阅读(2) 评论(0) 推荐(0)
摘要: include include using namespace std; struct TreeNode{ char val; TreeNode* left; TreeNode* right; TreeNode(char x):val(x),left(nullptr),right(nullptr){ 阅读全文
posted @ 2025-12-25 08:53 Cx330。 阅读(2) 评论(0) 推荐(0)
摘要: include include include using namespace std; struct TreeNode{ char val; TreeNode* left; TreeNode* right; TreeNode(char c):val(c),left(nullptr),right(n 阅读全文
posted @ 2025-12-25 08:38 Cx330。 阅读(6) 评论(0) 推荐(0)