给定两个三位整数和,求它们数位和的最大值。
数位和:例如,的数位和是。
一行,即和数位和的最大值。
输入 | 输出 |
---|---|
123 234 | 9 |
593 953 | 17 |
100 999 | 27 |
直接按题目照做即可。
#include <cstdio>
#include <algorithm>
using namespace std;
int main(int argc, char** argv)
{
char a[10], b[10];
scanf("%s%s", a, b);
int as = 0, bs = 0;
for(int i=0; a[i]; i++)
as += a[i] - '0';
for(int i=0; b[i]; i++)
bs += b[i] - '0';
printf("%d\n", max(as, bs));
return 0;
}
有个点,每个点的坐标是,坐标互不相同。
有多少对符合“”的点?
()
输出答案。
3
0 0
1 2
2 1
2
有三个点、、。
有对符合条件的点。
1
-691 273
0
只有个点,无法组成对,输出。
10
-31 -35
8 -36
22 64
5 73
-14 8
18 -58
-41 -85
1 -88
-21 -85
-11 82
11
到的斜率是。
推理过程:
为了防止浮点数精度误差,我们继续:
这时,就可以写代码了。
枚举所有对点即可。
#include <cstdio>
#include <cmath>
#define maxn 1005
using namespace std;
int x[maxn], y[maxn];
inline bool slope_check(int x1, int y1, int x2, int y2)
{
int dx = abs(x1 - x2), dy = abs(y1 - y2);
return dy <= dx;
}
int main(int argc, char** argv)
{
int n, cnt = 0;
scanf("%d", &n);
for(int i=0; i<n; i++)
scanf("%d%d", x + i, y + i);
for(int i=0; i<n-1; i++)
for(int j=i+1; j<n; j++)
if(slope_check(x[i], y[i], x[j], y[j]))
cnt ++;
printf("%d\n", cnt);
return 0;
}
给你个字符串。每个字符串都由小写字母组成,前面有至多个!
。
找到中任意一个字符串,使中出现了“!
+这个字符串”(没有引号)。如果没有符合条件的字符串,输出satisfiable
。
如果有符合条件的字符串,输出任意一个;
否则,输出satisfiable
。
6
a
!a
b
!c
d
!d
a
为a
,为!a
,所以符合条件;
为d
,为!d
,所以也符合条件,输出d
也会被判为正确。
10
red
red
red
!orange
yellow
!blue
cyan
!green
brown
!gray
satisfiable
没有符合条件的字符串。
如果暴力去枚举两个字符串(如,a
和!a
),需要两重循环,复杂度为(由于字符串太短可以忽略字符串比较),这里最大为,所以,枚举法不可用。
我们再考虑。
可以每次输入字符串时判断一下,如果它以!
开头将它的!
后面的内容放入set
中,否则将整个字符串放入vector
中。最后,循环遍历vector
(),每次在set
中查找这个字符串()。总时间复杂度为。
#include <iostream>
#include <set>
#include <string>
#include <vector>
using namespace std;
vector<string> v;
set<string> s;
int main(int argc, char** argv)
{
ios::sync_with_stdio(false); cin.tie(0);
int n;
cin >> n;
while(n--)
{
string x;
cin >> x;
if(x[0] == '!')
s.insert(x.substr(1));
else v.push_back(x);
}
for(int i=0; i<v.size(); i++)
if(s.find(v[i]) != s.end())
{
cout << v[i] << endl;
return 0;
}
cout << "satisfiable\n";
return 0;
}
题目大意略,请自行前往AtCoder查看。
数据范围:
输出答案。
4
2 1
2 2
5 1
1 3
1
Takahashi
在第三个城市演讲后,Aoki
和Takahashi
将分别得到和个投票。
5
2 1
2 1
2 1
2 1
2 1
3
在任意三个城市演讲后,Aoki
和Takahashi
将分别得到和个投票。
1
273 691
1
换句话说,我们的目的就是使得Aoki
和Takahashi
的票数差距逐渐减少。
最开始,票数的差距是Aoki
票数的和,也就是。
每去第个城市,差距减少,因此,我们可以贪心地先前往差距减少多的城市。这一点可以用数组+排序
、set
、priority_queue
三种方法实现(我选择的是priority_queue
,set
和priority_queue
更快一些)。
注意:一定不能忘记使用long long!!!
#include <cstdio>
#include <queue>
using namespace std;
typedef long long LL;
priority_queue<LL> q;
int main(int argc, char** argv)
{
int n;
scanf("%d", &n);
LL diff = 0;
while(n--)
{
LL ao, ta;
scanf("%lld%lld", &ao, &ta);
diff += ao;
q.push(ao + ao + ta);
}
int ans = 0;
while(!q.empty())
{
ans ++;
if((diff -= q.top()) < 0)
{
printf("%d\n", ans);
return 0;
}
q.pop();
}
return 0;
}