摘要: 中国大学生程序设计竞赛(秦皇岛)正式赛东北大学秦皇岛分校(SMU Autumn 2024 Team Round 1) Problem A. 贵校是构造王国吗 I 思路 官方题解很清晰明了。 代码 #include <bits/stdc++.h> using namespace std; #defin 阅读全文
posted @ 2024-10-07 17:13 Ke_scholar 阅读(17) 评论(0) 推荐(0) 编辑
摘要: The 2020 ICPC Asia Shenyang Regional Programming Contest Northeastern University(SMU 2024 ICPC 网络赛选拔赛2) D. Journey to Un'Goro 思路 队友写得,没看。 代码 #include 阅读全文
posted @ 2024-10-07 16:09 Ke_scholar 阅读(8) 评论(0) 推荐(0) 编辑
摘要: SMU Autumn 2024 Personal Round 1 前言 拉了,后面有空再补补。 A. Lex String 思路 排序后取最小,记录连续取了几个,不要超过 \(k\) 个即可。 代码 #include <bits/stdc++.h> using namespace std; usin 阅读全文
posted @ 2024-10-07 15:29 Ke_scholar 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Nordic Collegiate Programming Contest (NCPC 2021)(SMU 2024 ICPC网络赛选拔赛) A Antenna Analysis 思路 原式可拆成: \[(x_i-x_j)-c(i-j)=(x_i-c\cdot i)+(-x_j+c\cdot j) 阅读全文
posted @ 2024-10-07 15:08 Ke_scholar 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 偷的 struct myhash { static uint64_t fxn(uint64_t x) { x += 0x9e3779b97f4a7c15; x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; x = (x ^ (x >> 27)) * 0x94d049 阅读全文
posted @ 2024-10-07 03:23 Ke_scholar 阅读(8) 评论(0) 推荐(0) 编辑