上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: typedef long long LL; LL pow(LL a, LL n, LL m){ LL res = 1; while(n){ if(n & 1){ res = res * a % m; } a = a * a % m; n >>= 1; } return res; 阅读全文
posted @ 2024-01-09 12:35 yufan1102 阅读(2) 评论(0) 推荐(0) 编辑
摘要: A. Wallet Exchange #include<bits/stdc++.h> using namespace std; void solve(){ int a,b; cin>>a>>b; int k=a+b; if(!(k&1)){ cout<<"Bob\n"; }else{ cout<<" 阅读全文
posted @ 2024-01-08 14:20 yufan1102 阅读(20) 评论(0) 推荐(0) 编辑
摘要: A #include<bits/stdc++.h> using namespace std; void solve(){ string s; cin>>s; for(int i=0;i<s.size()-1;i++){ cout<<s[i]; } cout<<"4"; } int main(){ i 阅读全文
posted @ 2024-01-07 23:01 yufan1102 阅读(30) 评论(0) 推荐(0) 编辑
摘要: __int128 li = -2e18,ri = 2e18; //向上找最小值 while(li<ri) { __int128 mid = (li+ri-1)/2; if(a+mid*m>=l) ri=mid; else li = mid+1; } __int128 lj = -2e18,rj = 阅读全文
posted @ 2024-01-06 17:30 yufan1102 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 能承载39位的大数 #define int long long必开 template <typename _Tp> inline void read(_Tp&x) {//输入 char ch;bool flag=0;x=0; while(ch=getchar(),!isdigit(ch)) if(c 阅读全文
posted @ 2024-01-06 17:28 yufan1102 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 操作:选取词性最大的子序列,向右循环一次 问你进行多少次这样的操作能使数组有序,如果不能就输出-1 思路:首先要知道的是一个词性最大的序列整个右移过后,数组的新词性最大的序列就是之前的词性最大序列去了最后一个字母. 找出词性最大的子序列 int n; string s; cin>>n>>s; for 阅读全文
posted @ 2024-01-05 15:02 yufan1102 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 必须是强化攻击杀死,也就是7的倍数次,也就是每7次能打9滴血,那么反过来想如果这三个怪的血是9的倍数就一定是强化攻击打死的,否则不是。 #include<bits/stdc++.h> using namespace std; void solve(){ int a,b,c; cin>>a>>b>>c 阅读全文
posted @ 2024-01-05 14:28 yufan1102 阅读(10) 评论(0) 推荐(0) 编辑
摘要: int mergeSort(vector<int>& nums, int left, int right) { if (left >= right) return 0; int mid = left + (right - left) / 2; // 分治递归 long long count = me 阅读全文
posted @ 2024-01-05 00:00 yufan1102 阅读(2) 评论(0) 推荐(0) 编辑
摘要: D. Unnatural Language Processing 给字符串元素按要求间隔”.“ #include<bits/stdc++.h> using namespace std; void solve(){ int n; string s; cin>>n>>s; string o=s; for 阅读全文
posted @ 2024-01-04 23:59 yufan1102 阅读(48) 评论(0) 推荐(0) 编辑
摘要: A. Least Product 求乘积最小,可以改数组元素 #include<bits/stdc++.h> #define int long long using namespace std; void solve(){ int n; cin>>n; int ans=1; for(int i=1; 阅读全文
posted @ 2024-01-04 23:31 yufan1102 阅读(45) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页