AtCoder Beginner Contest 195 Editorial

Problem A - Health M Death(opens new window)

只要检查 \(H\equiv 0\) 即可.

  • Time complexity is \(\mathcal{O}(1)\).
  • Space complexity is \(\mathcal{O}(1)\).
Code(C++)
int main() {
ios_base::sync_with_stdio(false), cin.tie(0);
int M, H;
cin >> M >> H;
cout << (H % M == 0 ? "Yes\n" : "No\n");
return 0;
}

Problem B - Many Oranges(opens new window)

注意 \(W\) 是以千克为单位,所以需要以 \(1000W\) 代替 \(W\)

首先先来分析上限:

尽可能使用 A 来达到上限,但问题是可能会有剩余的克数,我们需要将其分配给 \(B\) 即可

  • Time complexity is \(\mathcal{O}(1)\)).
  • Space complexity is \(\mathcal{O}(1)\).
Code (C++)
int main() {
ios_base::sync_with_stdio(false), cin.tie(0);
int A, B, W;
cin >> A >> B >> W;
W *= 1000;
int minn = W / B;
int maxn = W / A;
if (minn + (W % B != 0) <= maxn) {
cout << minn + (W % B != 0) << ' ' << maxn << "\n";
} else {
cout << "UNSATISFIABLE\n";
}
return 0;
}

Problem C - Comma(opens new window)

  • [1,9]: 9 numbers, each has 0 commas.
  • [10,99]: 90 numbers, each has 0 commas.
  • [100,999]: 900 numbers, each has 0 commas.
  • [1000,9999]: 9000 numbers, each has 1 comma.
  • \(\cdots\)

基于以上模式可以很简单从 \(1000\) 开始,然后每 \(10\) 倍的递增直到超过 \(N\).

  • Time complexity is \(\mathcal{O}(\log_{10}N)\).
  • Space complexity is \(\mathcal{O}(1)\).
Code (Rust)
use proconio::input;
fn main() {
input! {
n: usize,
}
let mut base: usize = 1_000;
let mut ans: usize = 0;
let mut cnt = 3;
while base <= n {
let num = (n - base + 1).min(base * 9);
ans += num * (cnt / 3);
cnt += 1;
base *= 10;
}
println!("{}", ans);
}
Code (C++)
using ll = long long;
int main() {
ios_base::sync_with_stdio(false), cin.tie(0);
ll n, ans = 0;
cin >> n;
if (n > 999) ans += n - 999;
if (n > 999999) ans += n - 999999;
if (n > 999999999) ans += n - 999999999;
if (n > 999999999999) ans += n - 999999999999;
if (n > 999999999999999) ans += n - 999999999999999;
cout << ans << "\n";
return 0;
}

Problem D - Shipping Center(opens new window)

第一眼看过去是线段树问题,但数据范围较小可以暴力找。

对于每个查询,我们收集所有可用的框,并根据其容量以升序对其进行排序。 对于每个盒子,我们从没有使用过的,盒子可以容纳的所有物品中,贪婪地选择最有价值的行李。

  • Time complexity is \(\mathcal{O}(QM(N+\log M))\).
  • Space complexity is \(\mathcal{O}(1)\).
Code (C++)
using ll = long long;
typedef pair pii;
int main() {
ios_base::sync_with_stdio(false), cin.tie(0);
int n, m, q;
cin >> n >> m >> q;
vector wv(n);
vector x(m);
for (int i = 0; i < n; ++i) cin >> wv[i].second >> wv[i].first;
for (int i = 0; i < m; ++i) cin >> x[i];
sort(wv.begin(), wv.end(), greater());
while (q--) {
multiset s;
// 避免使用 Set 增加不必要的排序,因为上面已经排好序了
ll ans = 0;
int l, r;
cin >> l >> r;
for (int i = 0; i < l - 1; ++i) s.insert(x[i]);
for (int i = r; i < m; ++i) s.insert(x[i]);
multiset::iterator it;
for (int i = 0; i < n; ++i) {
if ((it = s.lower_bound(wv[i].second)) != s.end())
s.erase(it), ans += wv[i].first;
}
cout << ans << "\n";
// cout << "\n";
}
return 0;
}

Problem E - Lucky 7 Battle(opens new window)

不难发现,在这个游戏中,只有\(7\)的模数很重要。 因此,我们将精确地具有\(7\)个状态,表示当前的模数。

从后开始,因为我们只知道游戏结束时的赢/输状态:$0 = \text{Takahashi获胜} ,\text {others} = \text{Aoki获胜} $

对于每一步,我们都会枚举所有 \(7\)个模,并计算其后继者:\(a =(last * 10)%7,b =(last * 10 + s [i])%7\)。

如果高桥移动,则他需要 \(a\)或\(b\)才能成为获胜状态(对于高桥来说),以便last将成为获胜状态。

如果Aoki移动,他需要 \(a\)和b\(b\)成为失败状态(对于Takahashi),以便last将成为失败状态,否则(a和b均为获胜状态),last将成为获胜状态。

并且我们只需要首先检查 \(0\) 是否为获胜状态。

  • Time complexity is \(\mathcal{O}(CN), where\ C=7\).
  • Space complexity is \(\mathcal{O}(C)\).
using ll = long long;
int p7[8] = {1, 3, 2, 6, 4, 5};
int main() {
ios_base::sync_with_stdio(false), cin.tie(0);
int l;
cin >> l;
string s, t;
cin >> s >> t;
int mask = 1;
for (int i = l - 1; i >= 0; i--) {
int tg = (p7[(l - 1 - i) % 6] * (s[i] - '0')) % 7;
int nm = (mask << tg);
nm |= (nm >> 7);
nm &= (1 << 7) - 1;
if (t[i] == 'T') mask |= nm;
else
mask &= nm; // cout << mask << '\n';
}
cout << (mask & 1 ? "Takahashi\n" : "Aoki\n");
return 0;
}

AtCoder Beginner Contest 195 Editorial的更多相关文章

  1. AtCoder Beginner Contest 100 2018/06/16

    A - Happy Birthday! Time limit : 2sec / Memory limit : 1000MB Score: 100 points Problem Statement E8 ...

  2. AtCoder Beginner Contest 052

    没看到Beginner,然后就做啊做,发现A,B太简单了...然后想想做完算了..没想到C卡了一下,然后还是做出来了.D的话瞎想了一下,然后感觉也没问题.假装all kill.2333 AtCoder ...

  3. AtCoder Beginner Contest 053 ABCD题

    A - ABC/ARC Time limit : 2sec / Memory limit : 256MB Score : 100 points Problem Statement Smeke has ...

  4. AtCoder Beginner Contest 136

    AtCoder Beginner Contest 136 题目链接 A - +-x 直接取\(max\)即可. Code #include <bits/stdc++.h> using na ...

  5. AtCoder Beginner Contest 137 F

    AtCoder Beginner Contest 137 F 数论鬼题(虽然不算特别数论) 希望你在浏览这篇题解前已经知道了费马小定理 利用用费马小定理构造函数\(g(x)=(x-i)^{P-1}\) ...

  6. AtCoder Beginner Contest 076

    A - Rating Goal Time limit : 2sec / Memory limit : 256MB Score : 100 points Problem Statement Takaha ...

  7. AtCoder Beginner Contest 079 D - Wall【Warshall Floyd algorithm】

    AtCoder Beginner Contest 079 D - Wall Warshall Floyd 最短路....先枚举 k #include<iostream> #include& ...

  8. AtCoder Beginner Contest 064 D - Insertion

    AtCoder Beginner Contest 064 D - Insertion Problem Statement You are given a string S of length N co ...

  9. AtCoder Beginner Contest 075 D - Axis-Parallel Rectangle【暴力】

    AtCoder Beginner Contest 075 D - Axis-Parallel Rectangle 我要崩溃,当时还以为是需要什么离散化的,原来是暴力,特么五层循环....我自己写怎么都 ...

  10. AtCoder Beginner Contest 075 C bridge【图论求桥】

    AtCoder Beginner Contest 075 C bridge 桥就是指图中这样的边,删除它以后整个图不连通.本题就是求桥个数的裸题. dfn[u]指在dfs中搜索到u节点的次序值,low ...

随机推荐

  1. 一文秒懂|Linux字符设备驱动

    1.前言 众所周知,Linux内核主要包括三种驱动模型,字符设备驱动,块设备驱动以及网络设备驱动. 其中,Linux字符设备驱动,可以说是Linux驱动开发中最常见的一种驱动模型. 我们该系列文章,主 ...

  2. 开发工具使用:CubeMX、KEIL MDK-ARM

    来源:成电<微机原理与嵌入式系统>漆强 第四章 STM32CubeMX软件的使用 来源:成电<微机原理与嵌入式系统>漆强 第五章 MDK-ARM软件的使用 一.STM32的Cu ...

  3. lua面向对象(类)和lua协同线程与协同函数、Lua文件I/O

    -- create a class Animal={name = "no_name" , age=0 } function Animal:bark(voice) print(sel ...

  4. 在自动化测试时,Python常用的几个加密算法,你有用到吗

    本文分享自华为云社区<『加密算法』| 自动化测试时基于Python常用的几个加密算法实现,你有用到吗?>,作者:虫无涯 . 写在前边 这几天做自动化测试,遇到一个问题,那就是接口的请求的密 ...

  5. Head First Java学习:第十章-数字很重要

     1.Math 方法:最接近全局的方法 一种方法的行为不依靠实例变量值,方法对参数执行操作,但是操作不受实例变量状态影响,那么为了执行该方法去堆上建立对象实例比较浪费. 举例: Math mathOb ...

  6. EEPROM M24C64替换AT24C64出现读取数据为0xff情况解决办法

    EEPROM M24C64替换AT24C64出现读取数据为0xff情况解决办法 硬件情况 STM32F103CBT6+模拟IIC,主频72MHz,IIC上拉电阻3.3kΩ 出现原因 在IIC停止信号上 ...

  7. Oracle-Rman备份全解析

    RMAN备份数据库物理文件到备份集(backupset)中.在创建备份集时,仅备份已经使用的数据库(不备份空闲的数据块),而且还可以采用压缩功能. RMAN恢复时指当数据库出现介质失败时,使用RMAN ...

  8. 【C#】【WinForm】MDI窗体

    MDI窗体的相关学习使用 1.设置MDI父窗体 在属性中找到IsMdiContainer选项,设置为True 2.添加MDI子窗体,在项目中依次选择添加->窗体,然后一直默认即可 添加后的项目目 ...

  9. 递归产生StackOverflowError

    package com.guoba.digui; public class Demo01 { public void A(){ A();//自己调用自己,递归没用好,产生错误java.lang.Sta ...

  10. 小姐姐用动画图解Git命令,一看就懂!

    无论是开发.运维,还是测试,大家都知道Git在日常工作中的地位.所以,也是大家的必学.必备技能之一.之前公众号也发过很多git相关的文章: Git这些高级用法,喜欢就拿去用!一文速查Git常用命令,搞 ...