摘要: [前作](https://www.luogu.com.cn/article/b7yl49cs) [前前作](https://www.luogu.com.cn/article/hq60vm2q) 这篇文章本应该在今年神诞节的时候就写出来,但是神兽好像不太想让我写,我就被钦定觉得不想写了。 但是今年快要 阅读全文
posted @ 2026-01-01 00:02 LinkWish 阅读(20) 评论(1) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int a[55][55],f[55][55][55][55],n,m,t; int main(){ scanf("%d",&n); int b,c,d; do{ scanf("%d%d%d",&b,&c,&d 阅读全文
posted @ 2021-08-25 08:42 LinkWish 阅读(52) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int a[55][55],f[55][55][55][55],n,m,t; int main(){ scanf("%d%d",&n,&m); for(int i=1;i<=n;i++){ for(int j= 阅读全文
posted @ 2021-08-25 08:42 LinkWish 阅读(196) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int a[10001][4]; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ scanf("%d",&a[i][0]); scanf("%d",&a[i] 阅读全文
posted @ 2021-08-25 08:41 LinkWish 阅读(311) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; long long map1[50][50];//两边从10开始访问 int sum; int bx,by; int main(){ int horsey,horsex; cin>>by>>bx>>horsey>>hor 阅读全文
posted @ 2021-08-25 08:39 LinkWish 阅读(335) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int n,k,vis[2020][2020]; int dfs(int last,int num){ if(vis[last][num])return vis[last][num]; if(num>k){ r 阅读全文
posted @ 2021-08-25 08:37 LinkWish 阅读(31) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int main(){ long long a,b; cin>>a>>b; cout<<a+b; return 0; } 阅读全文
posted @ 2021-08-25 08:36 LinkWish 阅读(28) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define maxn 100000000 using namespace std; int n; int main(){ scanf("%d",&n); for(int i=2;i<=n;i++){ if(n%i==0){ printf("%d", 阅读全文
posted @ 2021-08-25 08:36 LinkWish 阅读(174) 评论(0) 推荐(0)
摘要: RT 阅读全文
posted @ 2021-08-25 08:33 LinkWish 阅读(33) 评论(0) 推荐(0)