上一页 1 ··· 10 11 12 13 14
摘要: 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 最后一个还有我 阅读(18) 评论(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 最后一个还有我 阅读(75) 评论(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 最后一个还有我 阅读(67) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14