上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 36 下一页
摘要: A. Orders 按照订单的结束时间排序,然后遍历一遍即可 #include<bits/stdc++.h> using namespace std; #define int long long using pii = pair<int, int>; using i32 = int32_t; voi 阅读全文
posted @ 2023-12-04 22:12 PHarr 阅读(64) 评论(0) 推荐(0) 编辑
摘要: A. Beth's Cookies n = int(input()) s = input() res = [] for i in s : if res == []: res.append(i) elif i == '(': if res[-1] == ')': res.append("*") res 阅读全文
posted @ 2023-12-04 14:21 PHarr 阅读(62) 评论(0) 推荐(1) 编辑
摘要: A - 2UP3DOWN #include<bits/stdc++.h> using namespace std; #define int long long void solve() { int a, b; cin >> a >> b; if (a < b and b - a <= 2) cout 阅读全文
posted @ 2023-11-26 19:25 PHarr 阅读(24) 评论(0) 推荐(0) 编辑
摘要: A - First ABC 2 #include <bits/stdc++.h> using namespace std; #define int long long #define mp make_pair using vi = vector<int>; using pii = pair<int, 阅读全文
posted @ 2023-11-26 17:44 PHarr 阅读(9) 评论(0) 推荐(0) 编辑
摘要: A. Special Permutation #include<bits/stdc++.h> using namespace std; #define int long long //#define int __int128 #define double long double typedef pa 阅读全文
posted @ 2023-11-25 22:56 PHarr 阅读(4) 评论(0) 推荐(0) 编辑
摘要: A. Odd Divisor #include<bits/stdc++.h> using namespace std; #define int long long //#define int __int128 #define double long double typedef pair<int,i 阅读全文
posted @ 2023-11-22 21:42 PHarr 阅读(7) 评论(0) 推荐(0) 编辑
摘要: A - 营救普雷赛斯 #include <bits/stdc++.h> using namespace std; #define int long long using i32 = int32_t; using vi = vector<int>; using pii = pair<int, int> 阅读全文
posted @ 2023-11-20 13:24 PHarr 阅读(17) 评论(0) 推荐(0) 编辑
摘要: A - Takahashi san #include <bits/stdc++.h> using namespace std; #define ll long long using vi = vector<int>; int main(){ ios::sync_with_stdio(false); 阅读全文
posted @ 2023-11-14 22:11 PHarr 阅读(15) 评论(0) 推荐(0) 编辑
摘要: A - Weak Beats #include <bits/stdc++.h> using namespace std; using pii = pair<int, int>; using vi = vector<int>; int main() { ios::sync_with_stdio(fal 阅读全文
posted @ 2023-11-13 21:20 PHarr 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 2899. 上一个遍历的整数 感觉读题比较困难 class Solution { public: vector<int> lastVisitedIntegers(vector<string>& words) { vector<int> res , a ; for( int i = 0 , cnt = 阅读全文
posted @ 2023-11-12 23:04 PHarr 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 36 下一页