AtCoder Beginner Contest 258
2022/8/16 23:30:55
本文主要是介绍AtCoder Beginner Contest 258,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
A - When?
问21:00
后的第k
分钟的时间
#include<bits/stdc++.h> using namespace std; const int N = 2e5+5; int n , a[N] , cnt , k; int32_t main(){ int n , h = 21 , m = 0; cin >> n; m += n; h += m / 60 ; m %= 60; printf("%02d:%02d\n" , h , m ); }
B - Number Box
数据范围很小,枚举起点,枚举方向
#include<bits/stdc++.h> #define int long long using namespace std; const int N = 12; const int dx[] = {1 ,-1 ,0 ,0 ,1 ,-1 ,1 ,-1 }; const int dy[] = {0 ,0 ,1 ,-1 , 1 ,1 ,-1 ,-1 }; int n , a[N][N] , ans ; string s; int32_t main() { cin >> n; for( int i = 0 ; i < n ; i ++ ) { cin >> s; for( int j = 0 ; j < n ; j ++ ) a[i][j] = s[j] - '0'; } for( int i = 0 ; i < n ; i ++ ) { for( int j = 0 ; j < n ; j ++ ) { for( int k = 0 , x = i , y = j , cnt = 0ll ; k < 8 ; k ++ , x = i , y = j , cnt = 0ll ){ for( int l = 1 ; l <= n ; l ++ ) cnt = cnt * 10ll + a[x][y] , x = ( x + dx[k] + n ) % n , y = ( y + dy[k] +n) % n; ans = max( ans , cnt ); } } } cout << ans << endl; }
C - Rotation
给一个长度为 n 的字符串 s 有 q 次操作,操作有两种。1是逐个删除结尾的 x 个字符然后逐渐添加到开头,2 时输出当前的第 x 个字符
这里不用移动开头,而是把创当成是一个换来考虑,每次维护一下开头的位置就好了
#include<bits/stdc++.h> #define ll long long using namespace std; const int N = 2e5+5; int n , sta , q; string s; int read(){ int x = 0 , ch = getchar(); while( ch < '0' || ch > '9' ) ch = getchar(); while( ch >= '0' && ch <= '9' ) x = ( x << 3 ) + ( x << 1 ) + ch - '0' , ch = getchar(); return x; } int32_t main(){ n = read() , q = read() , sta = 0; cin >> s; for( int op , x ; q ; q -- ) { op = read() , x = read(); if( op == 1 ) sta = ( ( sta - x ) % n + n ) % n ; else { cout << s[( ( sta + x - 1 ) % n + n ) % n ] << "\n"; } } }
D - Trophy
\(res=\min(\sum_{i=1}^{k}(a_i+b_i)+(x-k)\times b_i)\)
#include<bits/stdc++.h> #define int long long using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') && ch != '-') ch = getchar(); if (ch == '-') f = -1, ch = getchar(); while (ch >= '0' && ch <= '9') x = (x << 3) + (x << 1) + ch - '0', ch = getchar(); return x * f; } int32_t main() { int n = read() , m = read() , res = LONG_MAX , sum = 0; for( int a , b ; n && m ; n -- ){ a = read() , b = read(); sum += a + b , m --; res = min( res , sum + m * b ); } cout << res << "\n"; return 0; }
这篇关于AtCoder Beginner Contest 258的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-25安卓NDK 是什么?-icode9专业技术文章分享
- 2024-12-25caddy 可以定义日志到 文件吗?-icode9专业技术文章分享
- 2024-12-25wordfence如何设置密码规则?-icode9专业技术文章分享
- 2024-12-25有哪些方法可以实现 DLL 文件路径的管理?-icode9专业技术文章分享
- 2024-12-25错误信息 "At least one element in the source array could not be cast down to the destination array-icode9专业技术文章分享
- 2024-12-25'flutter' 不是内部或外部命令,也不是可运行的程序 或批处理文件。错误信息提示什么意思?-icode9专业技术文章分享
- 2024-12-25flutter项目 as提示Cannot resolve symbol 'embedding'提示什么意思?-icode9专业技术文章分享
- 2024-12-24怎么切换 Git 项目的远程仓库地址?-icode9专业技术文章分享
- 2024-12-24怎么更改 Git 远程仓库的名称?-icode9专业技术文章分享
- 2024-12-24更改 Git 本地分支关联的远程分支是什么命令?-icode9专业技术文章分享