题解列表

筛选

1286: 最大配对-c++

摘要:解题思路:1.升序排序 2.a从头b从尾拼凑 头尾拼凑过程:1:   2  7  52:   3  6  83:   5  4  94:   6  1  14注意事项:数组一定要开大一点!!  参考代……

1212: 年会(树形dp)

摘要:参考代码:#include<bits/stdc++.h> using namespace std; struct node { int to; int next; }mp[100005……

信息学奥赛一本通T1426-智力大冲浪(题型)

摘要:解题思路:首先,从输入中获取任务截止日期m和任务数量n。然后,使用一个循环,依次获取每个任务的截止日期和罚款金额,并将其存储在结构体数组a中。接下来,使用sort函数对结构体数组a进行排序,排序的依据……

考虑进去0和1

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){    //判断一个数是否是素数   ……

使用递归,轻松拿下

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;string t;int ans=0; bool dfs(int x,int y){ if(x……

dfs 一行一行来

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int dx[9]={0,0,0,1,-1,1,1,-1,-1};const in……