09 2023 档案

摘要:include <bits/stdc++.h> using namespace std; int max(int a[100],int n){ int t; if(n==1) t=a[1]; else if(max(a,n-1)>a[n]) t=max(a,n-1); else t=a[n]; re 阅读全文
posted @ 2023-09-24 09:54 昵称就是最好的昵称 阅读(5) 评论(0) 推荐(0) 编辑
摘要:include<bits/stdc++.h> using namespace std; using ll=long long; const ll M = 1e9+7; ll fast_pow(ll a,ll b){ ll res = 1; while(b>0){ if(b&1)res=(resa)% 阅读全文
posted @ 2023-09-15 17:32 昵称就是最好的昵称 阅读(53) 评论(0) 推荐(0) 编辑
摘要:#include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #define N 100 using namespace std; int a[N][N],b[N]; int vis[N][N]; int tot; i 阅读全文
posted @ 2023-09-09 09:18 昵称就是最好的昵称 阅读(55) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示