Contestant. Rank 3650. Rating +66.
A. Contest Result
题意
给定数组
思路
如题。
时间复杂度:
对应AC代码
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N = 1e5 + 10, inf = 0x3f3f3f3f, mod = 998244353;
int a[N];
signed main() {
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int n, m;
cin >> n >> m;
for(int i = 1;i<=n;i++) cin >> a[i];
int ans = 0;
for(int i=0;i<m;i++){
int p;
cin >> p;
ans += a[p];
}
cout << ans << '\n';
}
太打卡了吧((
B. Qual B
题意
给定一个由
思路
如题。
时间复杂度:
对应AC代码
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N = 1e5 + 10, inf = 0x3f3f3f3f, mod = 998244353;
int a[N];
signed main() {
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int n, m;
cin >> n >> m;
string s;
cin >> s;
int cnt = 0;
for(int i=0;i<n;i++){
if(s[i] == 'x') cout << 'x';
else{
cnt ++;
if(cnt > m) cout << 'x';
else cout << 'o';
}
}
}
做的太慢了捏
C. Max MEX
题意
给定一个数组
定义
都在 内; 不在 内
思路
我们不妨将数组升序排序,去除所有的重复元素,然后从
时间复杂度:
对应AC代码
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N = 3e5 + 10, inf = 0x3f3f3f3f, mod = 998244353;
int a[N];
signed main() {
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int n, m;
cin >> n >> m;
for(int i=0;i<n;i++) cin >> a[i];
sort(a, a + n);
a[n] = inf;
int l = 0;
for(int i=0;i<=n;i++){
if(a[i] == l - 1) continue;
if(a[i] == l) l ++;
if(l >= m) break;
}
cout << l;
}
模拟不明白了((
D. Marking
题意
对于
标记满足下面的规则:
第一次标记
点; 重复下述操作
次,其中 为前一次标记的下标: i. 令
; ii. 找到
及以后第一个没标记的下标并标记
思路
首先,很明显地,我们需要找出标记的周期,当完成一次周期后,我们需要移到下一位并继续循环,直至结束。
不难证明,周期是
考虑到数据量不超过长整型,我们直接计算
时间复杂度:不会分析捏
对应AC代码
import java.io.*;
import java.math.*;
import java.util.*;
import java.util.concurrent.atomic.*;
public class Main{
private static long gcd(long a, long b) {
while(b != 0) {
long tmp = a;
a = b;
b = tmp % b;
}
return a;
}
public static void main(String[] args) throws Exception{
Console console = new Console();
int t = console.nextInt();
while(t -- > 0){
long n = console.nextInt(), d = console.nextInt(), k = console.nextInt();
k --;
console.println(d * k % n + k / (n / gcd(n, d)));
}
console.close();
}
//快读模板 此处略去
//public static class Console implements Closeable {}
}
nnd,没考虑到类似于
的测试数据,寄
- 本文链接 https://floating-ocean.github.io/blog_old/posts/348658234/
- 版权声明 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!