AtCoder Beginner Contest 197(Sponsored by Panasonic)

2024-02-12 19:59

本文主要是介绍AtCoder Beginner Contest 197(Sponsored by Panasonic),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

AtCoder Beginner Contest 197(Sponsored by Panasonic)

  • A - Rotate
  • B - Visibility
  • C - ORXOR
  • D - Opposite

导读:
简单的题目,只说明题意,或者直接说明结论
下面的难题,会做详细的解释和证明
立个flag,在座的大佬们做个见证:一个月刷60场ABC,现在2021/6/16,第二天,已打卡3场。

A - Rotate

将串复制一遍,然后从第二个字符输出三个字符

void work()
{string s; cin >> s;s += s;for (int i = 1; i < 4; i ++ ) cout << s[i];cout << endl;
}

B - Visibility

题意:从(x,y)扩展,如果是.就可以走,如果是#就停,问有多少个.,那我们就直接向四个方向扩展

void work()
{int n, m, x, y;cin >> n >> m >> x >> y;char g[110][110];for (int i = 0; i < n; i ++ ) scanf("%s", g[i]);x --, y --;if (g[x][y] == '#'){cout << "0" << "\n";return;}int ans = 1;//向上int a = x - 1;while (a >= 0 && g[a][y] == '.') a --, ans ++ ;//向下a = x + 1;while (a < n && g[a][y] == '.') a ++, ans ++ ;//向左int b = y - 1;while (b >= 0 && g[x][b] == '.') b --, ans ++ ;//向右b = y + 1;while (b < m && g[x][b] == '.') b ++, ans ++;cout << ans << "\n";return;
}

C - ORXOR

题意:给一个长度为n的序列,在n-1个空格中添加^或者|,求一个最小值

我们知道,|越多越大,但是^却可能大,也可能小。我第一次做的时候,使用DFS做的,结果是对的,但是花了我一小时的时间debug,当时太拉跨了,现在看到官方题解,确实哦,能用DFS做的,用二进制枚举同样不超时的,这里就是二进制枚举的做法了。

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < n; i ++ )
const int N = 21;
int n;
int a[N];
int main()
{cin >> n;rep(i, n) cin >> a[i];int ans = INT_MAX;rep(i, 1 << (n - 1)) //枚举取xor的方法{int xor_val = 0;int or_val = 0;rep(j, n + 1){if (j < n) or_val |= a [j];if (j == n || i >> j & 1) xor_val ^= or_val, or_val = 0;}ans = min(ans, xor_val);}cout << ans << "\n";return 0;
}

D - Opposite

计算几何:这是我整理的这个题的公式推导
在这里插入图片描述

#include <bits/stdc++.h>
using namespace std;
int main()
{int n; cin >> n;double x, x2, y, y2; cin >> x >> y >> x2 >> y2;double a = (x + x2) / 2, b = (y + y2) / 2;double angle = acos(-1) * 2 / n;printf("%.5lf %.5lf\n", a + (x - a) * cos(angle) - (y - b) * sin(angle), b + (x - a) * sin(angle) + (y - b) * cos(angle));return 0;
}

这篇关于AtCoder Beginner Contest 197(Sponsored by Panasonic)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/703467

相关文章

2014 Multi-University Training Contest 8小记

1002 计算几何 最大的速度才可能拥有无限的面积。 最大的速度的点 求凸包, 凸包上的点( 注意不是端点 ) 才拥有无限的面积 注意 :  凸包上如果有重点则不满足。 另外最大的速度为0也不行的。 int cmp(double x){if(fabs(x) < 1e-8) return 0 ;if(x > 0) return 1 ;return -1 ;}struct poin

2014 Multi-University Training Contest 7小记

1003   数学 , 先暴力再解方程。 在b进制下是个2 , 3 位数的 大概是10000进制以上 。这部分解方程 2-10000 直接暴力 typedef long long LL ;LL n ;int ok(int b){LL m = n ;int c ;while(m){c = m % b ;if(c == 3 || c == 4 || c == 5 ||

2014 Multi-University Training Contest 6小记

1003  贪心 对于111...10....000 这样的序列,  a 为1的个数,b为0的个数,易得当 x= a / (a + b) 时 f最小。 讲串分成若干段  1..10..0   ,  1..10..0 ,  要满足x非递减 。  对于 xi > xi+1  这样的合并 即可。 const int maxn = 100008 ;struct Node{int

AtCoder Beginner Contest 370 Solution

A void solve() {int a, b;qr(a, b);if(a + b != 1) cout << "Invalid\n";else Yes(a);} B 模拟 void solve() {qr(n);int x = 1;FOR(i, n) FOR(j, i) qr(a[i][j]);FOR(i, n) x = x >= i ? a[x][i]: a[i][x];pr2(

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl

CF Bayan 2015 Contest Warm Up A.(模拟+预处理)

A. Bayan Bus time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/problem/A The fi

AtCoder Beginner Contest 369 D - Bonus EXP 动态规划

原题链接: https://atcoder.jp/contests/abc369/tasks/abc369_d 思路:   这道题为什么要用动态规划呢,其实,对于第i个怪物,我们有打与不打两种处理方式,而对于打,我们是获得两倍的经验值,还是一倍的经验值,与我们打了奇数只怪物还是打了偶数只怪物有关了,因此我们定义dp[i][0] 为前i只怪物总共打了偶数次,dp[i][1] 为前i只怪物总

数据赋能(197)——开发:数据应用——实施过程、应用特点

实施过程 数据应用的实施过程通常包括以下几个步骤: 明确业务目标和需求,确定需要采集的数据类型和范围;进行数据的收集、清洗和预处理,确保数据的准确性和一致性;利用数据分析工具和方法对数据进行挖掘和分析,发现有价值的信息和规律;将分析结果应用于实际业务中,推动业务的优化和创新。 应用特点 数据应用的特点主要体现在以下几个方面: 实时性: 随着技术的进步,数据应用能够实时获取、分析和反馈数据

2015 Multi-University Training Contest 5 1009 MZL#39;s Border

MZL's Border  Problem's Link:  http://acm.hdu.edu.cn/showproblem.php?pid=5351   Mean:  给出一个类似斐波那契数列的字符串序列,要你求给出的f[n]字符串中截取前m位的字符串s中s[1...i] = s[s.size()-i+1....s.size()]的最大长度。 analyse:   过计算

【UVa】10600 ACM Contest and Blackout 次小生成树

类型:次小生成树 题目大意: 为了举办ACM竞赛,市长决定给所有的n(3 <= n <= 100)所学校提供可靠的电力供应。当且仅当一个学校直接连到电站,或者连到另一个有可靠供应的学校时,才有可靠供应。现在给出在不同学校之间的布线成本,找出最便宜的两种连线方案。一个方案的成本等于其中所有学校之间连线的成本的总和。 题目分析: 次小生成树。 先求出最小生成树,然后枚举所有不在