上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页

2023年8月27日

摘要: ## T1:[树节点的排序](https://www.jisuanke.com/problem/T3883 "树节点的排序") $N \leqslant 8$: - 枚举排列即可 $N \leqslant 15$: - 状压dp - `dp[i][s]` 表示深度为 $i$,排列中选了 $s$ 里所 阅读全文
posted @ 2023-08-27 12:57 V_Melville 阅读(52) 评论(0) 推荐(0) 编辑

2023年8月19日

摘要: ## T1: [tcdr](https://atcoder.jp/contests/abc315/tasks/abc315_a "tcdr") 模拟 代码实现 ``` #include using namespace std; int main() { string s; cin >> s; era 阅读全文
posted @ 2023-08-19 23:34 V_Melville 阅读(50) 评论(0) 推荐(0) 编辑

2023年8月12日

摘要: ## T1:[3.14](https://atcoder.jp/contests/abc314/tasks/abc314_a "3.14") 模拟 代码实现 ``` s = '3.141592653589793238462643383279502884197169399375105820974944 阅读全文
posted @ 2023-08-12 23:09 V_Melville 阅读(76) 评论(0) 推荐(0) 编辑

2023年8月9日

摘要: ## T1:[两数归零](https://iai.sh.cn/problem/817 "两数归零") $a_i + a_j = 0 \Leftrightarrow a_j = -a_i$,用 `std::map` 来统计即可 代码实现 ``` #include #define rep(i, n) f 阅读全文
posted @ 2023-08-09 20:30 V_Melville 阅读(20) 评论(0) 推荐(0) 编辑
 
摘要: T1:树的计数 注意到,深度为 \(2\) 的点一定是深度为 \(1\) 的点的儿子节点,深度为 \(3\) 的点一定是深度为 \(2\) 的点的儿子节点.....那么深度为 \(i\) 的点可以是深度为 \(i - 1\) 的儿子节点,对于此题是一个经典的分步乘法计数原理,把深度为 \(2\) 的 阅读全文
posted @ 2023-08-09 12:53 V_Melville 阅读(48) 评论(0) 推荐(0) 编辑

2023年8月5日

摘要: ## T1:[To Be Saikyo](https://atcoder.jp/contests/abc313/tasks/abc313_a "To Be Saikyo") $x \geqslant \max({p_i}), i > 1$ 代码实现 ``` n = int(input()) a = 阅读全文
posted @ 2023-08-05 23:38 V_Melville 阅读(33) 评论(0) 推荐(0) 编辑

2023年7月29日

摘要: ## T1:[Chord](https://atcoder.jp/contests/abc312/tasks/abc312_a "Chord") 模拟 代码实现 ``` s = input() if s in 'ACE, BDF, CEG, DFA, EGB, FAC, GBD': print('Y 阅读全文
posted @ 2023-07-29 23:38 V_Melville 阅读(33) 评论(0) 推荐(0) 编辑
 
摘要: ## T1:[New Scheme](https://atcoder.jp/contests/abc308/tasks/abc308_a "New Scheme") 模拟 代码实现 ``` def solve(): s = list(map(int, input().split())) for i 阅读全文
posted @ 2023-07-29 18:36 V_Melville 阅读(12) 评论(0) 推荐(0) 编辑

2023年7月24日

摘要: ## T1:[First ABC](https://atcoder.jp/contests/abc311/tasks/abc311_a "First ABC") 模拟 代码实现 ``` n = int(input()) s = input() A = B = C = False for i in r 阅读全文
posted @ 2023-07-24 14:05 V_Melville 阅读(10) 评论(0) 推荐(0) 编辑

2023年7月18日

摘要: ## T1:[Weekly Records](https://atcoder.jp/contests/abc307/tasks/abc307_a "Weekly Records") 模拟 代码实现 ``` n = int(input()) a = list(map(int, input().spli 阅读全文
posted @ 2023-07-18 23:57 V_Melville 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页