A. Supermarket
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
We often go to supermarkets to buy some fruits or vegetables, and on the tag there prints the price for a kilo. But in some supermarkets, when asked how much the items are, the clerk will say that a yuan for b kilos (You don't need to care about what "yuan" is), the same as a / b yuan for a kilo.
Now imagine you'd like to buy m kilos of apples. You've asked n supermarkets and got the prices. Find the minimum cost for those apples.
You can assume that there are enough apples in all supermarkets.
Input
The first line contains two positive integers n and m (1 ≤ n ≤ 5 000, 1 ≤ m ≤ 100), denoting that there are n supermarkets and you want to buy m kilos of apples.
The following n lines describe the information of the supermarkets. Each line contains two positive integers a, b (1 ≤ a, b ≤ 100), denoting that in this supermarket, you are supposed to pay a yuan for b kilos of apples.
Output
The only line, denoting the minimum cost for m kilos of apples. Please make sure that the absolute or relative error between your answer and the correct answer won't exceed 10 - 6.
Formally, let your answer be x, and the jury's answer be y. Your answer is considered correct if .
Examples
input
3 5
1 2
3 4
1 3
output
1.66666667
input
2 1
99 100
98 99
output
0.98989899
Note
In the first sample, you are supposed to buy 5 kilos of apples in supermarket 3. The cost is 5 / 3 yuan.
In the second sample, you are supposed to buy 1 kilo of apples in supermarket 2. The cost is 98 / 99 yuan.
题意
知道每件商品的单价,求最小的应付金额
题解
水~
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int n,m;
while(cin>>n>>m)
{
double mm=1e9;
for(int i=0;i<n;i++)
{
int a,b;
cin>>a>>b;
if(mm>a*1.0/b)
mm=a*1.0/b;
}
printf("%.8lf\n",mm*m);
}
return 0;
}
B. Perfect Number
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
We consider a positive integer perfect, if and only if the sum of its digits is exactly 10. Given a positive integer k, your task is to find the k-th smallest perfect positive integer.
Input
A single line with a positive integer k (1 ≤ k ≤ 10 000).
Output
A single number, denoting the k-th smallest perfect integer.
Examples
input
1
output
19
input
2
output
28
Note
The first perfect integer is 19 and the second one is 28.
##题意
数字的每一位相加之和为10,求第K个这样的数字。
题解
直接暴力吧
#include<iostream>
#include<cstdio>
using namespace std;
int a[100005];
bool fun(int n)
{
int cnt=0;
while(n)
{
cnt+=n%10;
if(cnt>10)
return false;
n/=10;
}
if(cnt==10)
return true;
return false;
}
int main()
{
int cnt=0;
for(int i=1;i<2e7;i++)
{
if(fun(i))
{
a[cnt++]=i;
}
}
int n;
cin>>n;
cout<<a[n-1]<<endl;
return 0;
}
C. Seat Arrangements
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
Suppose that you are in a campus and have to go for classes day by day. As you may see, when you hurry to a classroom, you surprisingly find that many seats there are already occupied. Today you and your friends went for class, and found out that some of the seats were occupied.
The classroom contains n rows of seats and there are m seats in each row. Then the classroom can be represented as an n × m matrix. The character '.' represents an empty seat, while '*' means that the seat is occupied. You need to find k consecutive empty seats in the same row or column and arrange those seats for you and your friends. Your task is to find the number of ways to arrange the seats. Two ways are considered different if sets of places that students occupy differs.
Input
The first line contains three positive integers n, m, k (1 ≤ n, m, k ≤ 2 000), where n, m represent the sizes of the classroom and k is the number of consecutive seats you need to find.
Each of the next n lines contains m characters '.' or ''. They form a matrix representing the classroom, '.' denotes an empty seat, and '' denotes an occupied seat.
Output
A single number, denoting the number of ways to find k empty seats in the same row or column.
Examples
input
2 3 2
**.
...
output
3
input
1 2 2
..
output
1
input
3 3 4
..
.
..
output
0
Note
In the first sample, there are three ways to arrange those seats. You can take the following seats for your arrangement.
(1, 3), (2, 3)
(2, 2), (2, 3)
(2, 1), (2, 2)
题意
找竖着或横着的连续的K给个空位。
题解
直接上下扫一下就好
#include<bits/stdc++.h>
using namespace std;
string s[2005];
int main()
{
ios::sync_with_stdio(false);
int n,m,k;
cin>>n>>m>>k;
for(int i=0; i<n; i++)
cin>>s[i];
int sum=0;
for(int i=0; i<n; i++)
{
int t=0;
for(int j=0; j<m; j++)
{
if(s[i][j]=='.')t++;
else
{
if(t>=k)sum+=t-k+1;
t=0;
}
}
if(t>=k)sum+=t-k+1;
}
if(k!=1)
{
for(int i=0; i<m; i++)
{
int t=0;
for(int j=0; j<n; j++)
{
if(s[j][i]=='.')t++;
else
{
if(t>=k)
sum+=t-k+1;
t=0;
}
}
if(t>=k)sum+=t-k+1;
}
}
cout<<sum;
return 0;
}
D. Substring
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
You are given a graph with n nodes and m directed edges. One lowercase letter is assigned to each node. We define a path's value as the number of the most frequently occurring letter. For example, if letters on a path are "abaca", then the value of that path is 3. Your task is find a path whose value is the largest.
Input
The first line contains two positive integers n, m (1 ≤ n, m ≤ 300 000), denoting that the graph has n nodes and m directed edges.
The second line contains a string s with only lowercase English letters. The i-th character is the letter assigned to the i-th node.
Then m lines follow. Each line contains two integers x, y (1 ≤ x, y ≤ n), describing a directed edge from x to y. Note that x can be equal to y and there can be multiple edges between x and y. Also the graph can be not connected.
Output
Output a single line with a single integer denoting the largest value. If the value can be arbitrarily large, output -1 instead.
Examples
input
5 4
abaca
1 2
1 3
3 4
4 5
output
3
input
6 6
xzyabc
1 2
3 1
2 3
5 4
4 3
6 4
output
-1
input
10 14
xzyzyzyzqx
1 2
2 4
3 5
4 5
2 6
6 8
6 5
2 10
3 9
10 9
4 6
1 10
2 8
3 7
output
4
Note
In the first sample, the path with largest value is 1 → 3 → 4 → 5. The value is 3 because the letter 'a' appears 3 times.
题意
求一条路径上出现某字母最多的次数,若存在环则输出-1.
题解
拓扑排序+dp,dp[i][j]是以i为终点的路径,第j个字母出现的次数。dp的状态转移也很显然。
#include<iostream>
#include<cstring>
#include<vector>
#include<queue>
#include<algorithm>
using namespace std;
const int maxn=300010;
char s[maxn];
int n,m;
int d[maxn],dp[maxn][26];
vector<int> G[maxn];
int main()
{
ios::sync_with_stdio(false);
cin>>n>>m>>(s+1);
for(int i=0;i<m;i++)
{
int u,v;
cin>>u>>v;
G[u].push_back(v);
d[v]++;
}
queue<int> que;
for(int i=1;i<=n;i++)
if(!d[i])
que.push(i);
int cnt=n;
while(!que.empty())
{
cnt--;
int u=que.front();
que.pop();
dp[u][s[u]-'a']++;
for(int v:G[u])
{
for(int j=0;j<26;j++)
dp[v][j]=max(dp[v][j],dp[u][j]);
d[v]--;
if(!d[v])
que.push(v);
}
}
if(cnt)
return puts("-1"),0;
int ans=0;
for(int i=1;i<=n;i++)
for(int j=0;j<26;j++)
ans=max(ans,dp[i][j]);
cout<<ans<<endl;
return 0;
}