In the Kingdom of AtCoder, residents are required to shout their love for takoyaki at
A o’clock every day.
Takahashi, who lives in the Kingdom of AtCoder, goes to bed at
B o’clock and wakes up at C o’clock every day (in the 24-hour clock). He can shout his love for takoyaki when he is awake, but cannot when he is asleep. Determine whether he can shout his love for takoyaki every day. Here, a day has 24 hours, and his sleeping time is less than 24 hours.
给定一个整数时间 A,一个人在B时间睡觉,C时间起床(24小时制),问A是否不在睡觉时间
解题思路
我们可以先判断B,C这个时间段是否是跨越两天的,若是跨越两天, A < B && A > C 才会不在这个时间段
若未跨越两天 A < B || A > C 满足不在 B,C 时间段
参考代码
#include<bits/stdc++.h>
#define int long long #define endl '\n' #define pii std::pair<int ,int> #define fix(x) std::fixed << std::setprecision(x) constint inf = 1e17 + 50, MAX_N = 1e5 + 50, mod = 1e9 + 7;
voidsolve(){ int a, b, c; std::cin >> a >> b >> c; if (b > c) { if (a >= b || a <= c) { std::cout << "No" << endl; } else { std::cout << "Yes" << endl; } } else { if (a >= b && a <= c) { std::cout << "No" << endl; } else { std::cout << "Yes" << endl; } } }
A real number $X$ is given to the third decimal place.
Print the real number $X$ under the following conditions.
The decimal part must not have trailing 0s.
There must not be an unnecessary trailing decimal point.
一个实数 $X$ 已精确到小数点后第三位。
请在下列条件下打印实数 $X$ 。
小数部分不能有尾数 “0”。
小数点后不能有多余的尾数。
参考代码
#include<bits/stdc++.h>
#define int long long #define endl '\n' #define pii std::pair<int ,int> #define fix(x) std::fixed << std::setprecision(x) constint inf = 1e17 + 50, MAX_N = 1e5 + 50, mod = 1e9 + 7;
voidsolve(){ std::string s, t(""); std::cin >> s; int cnt = 0, f = 0; for(auto i : s) { if (cnt == 3) { break; } cnt += f; if (i == '.') f = 1; t = t + i; }
while (t.back() == '0') t.pop_back(); if (t.back() == '.') t.pop_back(); std::cout << t << endl; }
using VI = std::vector<int>; #define int long long #define endl '\n' #define pii std::pair<int ,int> #define fix(x) std::fixed << std::setprecision(x) constint inf = 1e17 + 50, MAX_N = 1e5 + 50, mod = 1e9 + 7;
voidsolve(){ int n, k; std::cin >> n >> k; VI a(n); std::vector<VI> ans; for(int i = 0; i < n; i++) { std::cin >> a[i]; }
VI w(n, 1ll); std::function<void (int)> dfs = ([&] (int u) { if (u == n) { int res = 0; for(auto i : w) res += i; if (res % k == 0) ans.push_back(w); return; } for(int i = 1; i <= a[u]; i++) { w[u] = i; dfs(u + 1); } return; });
dfs(0);
std::sort(ans.begin(), ans.end(), [&] (VI aa, VI bb) { return aa < bb; });
There are $N$ rest areas around a lake.
The rest areas are numbered $1$, $2$, …, $N$ in clockwise order.
It takes $A_i$ steps to walk clockwise from rest area $i$ to rest area $i+1$ (where rest area $N+1$ refers to rest area $1$).
The minimum number of steps required to walk clockwise from rest area $s$ to rest area $t$ ($s \neq t$) is a multiple of $M$.
Find the number of possible pairs $(s,t)$.
解题思路
参考代码
#include<bits/stdc++.h>
#define int long long #define endl '\n' #define pii std::pair<int ,int> #define fix(x) std::fixed << std::setprecision(x) constint inf = 1e17 + 50, MAX_N = 1e5 + 50, mod = 1e9 + 7;