上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 36 下一页
摘要: # C. Darkness I 首先根据短边放一条对角线,然后往后每隔一列只放一个即可。 ```cpp #include using namespace std; #define int long long int32_t main() { ios::sync_with_stdio(false), 阅读全文
posted @ 2023-05-19 20:25 PHarr 阅读(98) 评论(0) 推荐(0) 编辑
摘要: # A. 小水獭游河南 a的长度小于 26,所以直接暴力枚举暴力判断。 ```cpp #include using namespace std; void solve() { string s; cin >> s; if (s.size() == 1) { cout cnt; for (int i 阅读全文
posted @ 2023-05-19 20:22 PHarr 阅读(85) 评论(0) 推荐(0) 编辑
摘要: A. 小斧头 $O(N^3)$ 20 points 暴力枚举左右端点,然后暴力求区间最值 #include <bits/stdc++.h> using namespace std; #define int long long int read(){...} int32_t main() { int 阅读全文
posted @ 2023-05-08 19:53 PHarr 阅读(43) 评论(0) 推荐(0) 编辑
摘要: A. Love Story #include<bits/stdc++.h> using namespace std; #define int long long int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch 阅读全文
posted @ 2023-05-08 19:53 PHarr 阅读(41) 评论(0) 推荐(0) 编辑
摘要: A - T-shirt #include <bits/stdc++.h> using namespace std; int32_t main(){ double a , b , c , x; cin >> a >> b >> c >> x; if( x <= a ) cout << "1.00000 阅读全文
posted @ 2023-05-06 21:01 PHarr 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 首先矩阵快速幂模板 ```cpp struct matrix { static constexpr int mod = 1e9 + 7; int x, y; vector> v; matrix() {} matrix(int x, int y) : x(x), y(y) { v = vector>( 阅读全文
posted @ 2023-05-06 20:29 PHarr 阅读(17) 评论(0) 推荐(0) 编辑
摘要: A - N-choice question #include<bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') && ch 阅读全文
posted @ 2023-05-03 21:38 PHarr 阅读(22) 评论(0) 推荐(0) 编辑
摘要: A - Water Pressure #include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; printf("%.6lf\n" , n / 100.0 ); return 0; } B - Election 阅读全文
posted @ 2023-04-30 17:56 PHarr 阅读(19) 评论(0) 推荐(0) 编辑
摘要: A. Tricky Sum 公式求出1 到 n的和,然后枚举二等整次幂。 #include <bits/stdc++.h> using namespace std; #define int long long void solve(){ int n; cin >> n; int sum = ( 1 阅读全文
posted @ 2023-04-29 17:42 PHarr 阅读(15) 评论(0) 推荐(0) 编辑
摘要: A. TubeTube Feed #include <bits/stdc++.h> using namespace std; int main() { int q; cin >> q; while (q--) { int n, t, res = -1, id = -1; cin >> n >> t; 阅读全文
posted @ 2023-04-26 20:05 PHarr 阅读(61) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 36 下一页