IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Codeforces Round #784 (Div. 4)题解 (第一次AK cf (XD -> 正文阅读

[数据结构与算法]Codeforces Round #784 (Div. 4)题解 (第一次AK cf (XD

在这里插入图片描述
虽然是Div.4,但是第一次AK,还是有点小激动

A. Division?

模拟

#include <bits/stdc++.h>
using namespace std;

string f(int n) {
    if (n <= 1399) return "Division 4";
    if (n <= 1599) return "Division 3";
    if (n <= 1899) return "Division 2";
    return "Division 1";
}

void solve() {
    int n;
    cin >> n;
    cout << f(n) << '\n';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}

B. Triple

ans初始化为-1,map统计

#include <bits/stdc++.h>
using namespace std;

map<int, int> mp;

void solve() {
    mp.clear();
    int n;
    cin >> n;
    int ans = -1;
    for (int i = 0; i < n; i++) {
        int a;
        cin >> a;
        ++mp[a];
        if (mp[a] >= 3) ans = a;
    }
    cout << ans << '\n';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}

C. Odd/Even Increments

统计奇数位上是不是都是奇数或都是偶数,偶数位上也是如此,若存在奇偶性不一致则NO

#include <bits/stdc++.h>
using namespace std;

void solve() {
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    int oo = 0, jj = 0;
    for (int i = 0; i < n; i++) {
        if ((i & 1) && (a[i] & 1)) jj++;
        if (!(i & 1) && !(a[i] & 1)) ++oo;
    }
    if ((jj == 0 || jj == n / 2) && (oo == 0 || oo == n / 2 + (n & 1)))
        cout << "YES\n";
    else
        cout << "NO\n";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}

D. Colorful Stamp

W分段,每段若出现只出现B或只出现R,则NO

#include <bits/stdc++.h>
using namespace std;
string s;

void solve() {
    int n;
    cin >> n;
    cin >> s;
    int r = 0, b = 0;
    for (int i = 0; i < n; i++) {
        if (s[i] == 'R') ++r;
        if (s[i] == 'B') ++b;
        if (s[i] == 'W' || i == n - 1) {
            if ((r > 0 && !b) || (b > 0 && !r)) {
                cout << "NO\n";
                return;
            }
            r = 0, b = 0;
        }
    }
    cout << "YES\n";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}

E. 2-Letter Strings

一开始想歪了,以为字典树

开个map存第一个字符为a-z的串个数,同样开个map存第二个字符为a-z的串个数,最后开个map存每种字符串出现次数,遍历每种串,与当前该种串能成对个串数为(第一个字符和当前串相同但第二个字符不同的 加上 第二个字符和当前串相同但第一个字符不同的)乘上 该种串的数量,用前面map存的信息来计算,但这样统计,每个串对会统计2次,最后ans/2即可

#include <bits/stdc++.h>
using namespace std;

#define ll long long

// ll trie[1000005][31];
map<char, ll> mp1, mp2;
map<string, ll> mp;
// ll cnt;
// char s[5];
string s;
void solve() {
    mp.clear();
    mp1.clear();
    mp2.clear();
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> s;
        ++mp1[s[0]];
        ++mp2[s[1]];
        ++mp[s];
        // insert(s, 2);
    }
    ll ans = 0;
    for (auto v : mp) {
        ans += (mp1[v.first[0]] - v.second) * v.second;
        ans += (mp2[v.first[1]] - v.second) * v.second;
    }
    ans /= 2;
    cout << ans << '\n';
    // for(int i=0;i<)
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}

F. Eating Candies

前后两个指针往中间走,当两边吃的糖果一样多就更新答案,优先走吃的少的,当吃的一样多,优先走大堆的

#include <bits/stdc++.h>
using namespace std;
#define ll long long
void solve() {
    int n;
    cin >> n;
    vector<ll> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    int l = 0, r = n - 1;
    ll lw = a[0], rw = a[n - 1];
    ll ans = 0;
    while (1) {
        if (l == r) break;
        if (lw == rw) ans = l - 0 + 1 + n - r;
        if (l == r - 1) break;
        if (lw > rw) {
            --r;
            rw += a[r];
        } else if (rw > lw) {
            ++l;
            lw += a[l];
        } else {
            if (a[l + 1] > a[r - 1]) {
                ++l;
                lw += a[l];
            } else {
                --r;
                rw += a[r];
            }
        }
    }
    cout << ans << '\n';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}

G. Fall Down

从每列最下往上找石子,有就将他下落到不能落之处

#include <bits/stdc++.h>
using namespace std;
char s[55][55];

int n, m;
void d(int x, int y) {
    for (int i = x + 1; i < n; i++) {
        if (s[i][y] == '.') {
            s[i][y] = '*';
            s[i - 1][y] = '.';
        } else
            break;
    }
}

void solve() {
    cin >> n >> m;
    for (int i = 0; i < n; i++) {
        cin >> s[i];
        // cout << s[i] << '\n';
    }
    for (int i = 0; i < m; i++) {
        for (int j = n - 1; j >= 0; j--) {
            if (s[j][i] == '*') {
                d(j, i);
            }
        }
    }
    for (int i = 0; i < n; i++) {
        cout << s[i] << '\n';
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}

H. Maximal AND

统计n个数每位出现的次数,贪心从 2 30 2^{30} 230 2 0 2^0 20依次满足,满足第i位加上 2 i 2^i 2i需要 n ? c o u n t i n-count_i n?counti?步, c o u n t i count_i counti?为n个数种 2 i 2^i 2i这位出现的次数

#include <bits/stdc++.h>
using namespace std;
map<int, int> mp;
void solve() {
    mp.clear();
    int n, k;
    cin >> n >> k;
    for (int i = 0, a; i < n; i++) {
        cin >> a;
        int idx = 0;
        while (a) {
            if (a & 1) ++mp[idx];
            ++idx;
            a >>= 1;
        }
    }
    int ans = 0;
    for (int i = 30, t = 1 << 30; i >= 0; i--, t >>= 1) {
        int q = n - mp[i];
        if (k >= q) {
            k -= q;
            ans += t;
        }
    }
    cout << ans << '\n';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin >> t;
    while (t--) solve();
    return 0;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-22 19:01:27  更:2022-04-22 19:03:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 7:44:03-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码