RedSenior

导航

2024年12月17日 #

p1003铺地毯

摘要: 铺地毯 对于这道题目,想到的首要方法是把所有的都初始化为0,然后遍历从前到后导入一张张地毯的值,每加一张地毯,就更新点位为其的编号,然后直接输出点位编号即可,奈何数据太大,这样是行不通的,所以需要反向操作一下——从上往下遍历,此种方法的精髓在于return 0;打断循环,这种方法在很多场景都很适用。 阅读全文

posted @ 2024-12-17 19:59 RedLouie 阅读(2) 评论(0) 推荐(0) 编辑

p1008三连击

摘要: 三连击 首先,第一种做法是将一个用一个向量(vector)数组里面装满1-9的所有数字,再用next_permutation进行全排列,用if条件语句筛选出符合结果的输出 点击查看代码 #include <iostream> #include <algorithm> #include <vector 阅读全文

posted @ 2024-12-17 19:42 RedLouie 阅读(1) 评论(0) 推荐(0) 编辑

2024年12月15日 #

部署云端

摘要: ![](https://img2024.cnblogs.com/blog/3329340/202412/3329340-20241215204701091-1965534063.png) ![](https://img2024.cnblogs.com/blog/3329340/202412/3329340-20241215204755601-2083933879.png) ![](https:// 阅读全文

posted @ 2024-12-15 20:48 RedLouie 阅读(1) 评论(0) 推荐(0) 编辑

智能体记忆

摘要: 点击查看代码 from langgraph.graph import START, StateGraph from langgraph.prebuilt import tools_condition, ToolNode builder = StateGraph(MessagesState) # 定义 阅读全文

posted @ 2024-12-15 20:46 RedLouie 阅读(0) 评论(0) 推荐(0) 编辑

智能体

摘要: 点击查看代码 from langgraph.graph import START, StateGraph from langgraph.prebuilt import tools_condition from IPython.display import Image, display # 初始化状态 阅读全文

posted @ 2024-12-15 20:41 RedLouie 阅读(1) 评论(0) 推荐(0) 编辑

路由器

摘要: ![](https://img2024.cnblogs.com/blog/3329340/202412/3329340-20241215203641063-129726008.png)![](https://img2024.cnblogs.com/blog/3329340/202412/3329340-20241215203649966-634529419.png)![](https://img2... 阅读全文

posted @ 2024-12-15 20:37 RedLouie 阅读(1) 评论(0) 推荐(0) 编辑

摘要: ![](https://img2024.cnblogs.com/blog/3329340/202412/3329340-20241215201635375-1957232177.png) ![](https://img2024.cnblogs.com/blog/3329340/202412/3329340-20241215201642560-1574684626.png) ![](https:// 阅读全文

posted @ 2024-12-15 20:17 RedLouie 阅读(1) 评论(0) 推荐(0) 编辑

简单图

摘要: 简单图 阅读全文

posted @ 2024-12-15 20:00 RedLouie 阅读(1) 评论(0) 推荐(0) 编辑

2024年12月12日 #

大概框架

摘要: 这边列举一个简单的聊天案例: 点击查看代码 from langchain_openai import ChatOpenAI def multiply(a: int, b: int) -> int: """Multiply a and b. Args: a: first int b: second i 阅读全文

posted @ 2024-12-12 23:11 RedLouie 阅读(2) 评论(0) 推荐(0) 编辑

2024年12月1日 #

25分支限界算法和回溯算法

摘要: 回溯算法 实际问题: 其中回溯算法也可以用于解决n皇后问题 #include <iostream> #include <vector> using namespace std; const int N = 8; vector<int> col(N, 0), diag1(2 * N, 0), diag 阅读全文

posted @ 2024-12-01 23:36 RedLouie 阅读(14) 评论(0) 推荐(0) 编辑