11 2021 档案

摘要:#include <stdio.h> #include <string.h> #define N 100 /* 这道题的输入要比较小心的处理, 由于字符是按顺序给的,所以我们不需要保存字符 基本思路 n = read() f[n] = read() best = 最优权值和 m = read() 循 阅读全文
posted @ 2021-11-23 23:26 usr_void 阅读(51) 评论(0) 推荐(0)
摘要:逻辑部分 #include <bits/stdc++.h> using namespace std; struct Node{ int value; int deleteTag; //1 表示删除 struct Node* next; }; struct LinkList{ Node* head; 阅读全文
posted @ 2021-11-06 17:44 usr_void 阅读(92) 评论(0) 推荐(0)