众人当中,你是唯一能够让我去爱的人。你可知道这意味着什么,这意味着沙漠里的清泉,荒原里开花的树。正是因为你,我的心灵才没有枯萎,我的灵魂中还保留了一处神恩可以抵达的地方。
03 2023 档案
摘要:质数 试除法判定质数 bool isprime(int x) { if(x == 1) return false; if(x == 2) return true; for(int i = 2; i <= x/i; i++) if(x % i == 0) return false; return tr
阅读全文
摘要:01背包 #include <iostream> #include <algorithm> using namespace std; #define N 1010 int dp[N]; int main() { int n,m; cin >> n >> m; for(int i = 1; i<=n;
阅读全文