Codeforces Round #263 (Div. 2) A-D
就是一次手速場啊,1000+個三道題的啊。還有就是一定要注意資料範圍,好多人被查掉了。
A,再一次被樣例坑了一下,注意是每個點相鄰的o的個數是否都為偶數個。
#include <algorithm>
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include <iomanip>
#include <stdio.h>
#include <string>
#include <queue>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#define eps 1e-12
///#define M 1000100
///#define LL __int64
#define LL long long
///#define INF 0x7ffffff
#define INF 0x3f3f3f3f
#define PI 3.1415926535898
#define zero(x) ((fabs(x)<eps)?0:x)
using namespace std;
const int maxn = 110;
char str[maxn][maxn];
int dx[] = {1, 0, 0, -1};
int dy[] = {0, 1, -1, 0};
int main()
{
int n;
while(~scanf("%d",&n))
{
for(int i = 0; i < n; i++) cin >>str[i];
if(n == 1)
{
cout<<"YES"<<endl;
continue;
}
int flag = 0;
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
{
int cnt = 0;
for(int k = 0; k < 4; k++)
{
int x = i+dx[k];
int y = j+dy[k];
if(x < 0 || y < 0 || x >= n || y >= n)
{
continue;
}
if(str[x][y] == 'o') cnt++;
}
if(cnt%2)
{
flag = 1;
break;
}
}
if(flag) break;
}
if(flag) cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
return 0;
}
B。根據第一組樣例我們就可以得到這題是一個貪心的策略儘量選最多的啊。雜湊一下每種字母有多少個。
#include <algorithm>
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include <iomanip>
#include <stdio.h>
#include <string>
#include <queue>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#define eps 1e-12
///#define M 1000100
///#define LL __int64
#define LL long long
///#define INF 0x7ffffff
#define INF 0x3f3f3f3f
#define PI 3.1415926535898
#define zero(x) ((fabs(x)<eps)?0:x)
using namespace std;
const int maxn = 100010;
LL vis[100];
char str[maxn];
int main()
{
LL n;
LL k;
while(cin >>n>>k)
{
cin >>str;
memset(vis, 0, sizeof(vis));
for(int i = 0; i < n; i++)
{
vis[str[i]-'A']++;
}
sort(vis, vis+26);
LL ans = 0LL;
for(int i = 25; i >= 0; i--)
{
if(vis[i] <= k)
{
ans += vis[i]*vis[i];
k -= vis[i];
}
else
{
ans += k*k;
break;
}
}
cout<<ans<<endl;
}
}
C。貪心的思想,每次去掉最小的,可以得到一個小的規律。sort一下在求一遍就ok了啊。
#include <algorithm>
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include <iomanip>
#include <stdio.h>
#include <string>
#include <queue>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#define eps 1e-12
///#define M 1000100
///#define LL __int64
#define LL long long
///#define INF 0x7ffffff
#define INF 0x3f3f3f3f
#define PI 3.1415926535898
#define zero(x) ((fabs(x)<eps)?0:x)
using namespace std;
const int maxn = 500010;
LL sum[maxn];
LL num[maxn];
LL cnt[maxn];
int main()
{
LL n;
while(cin >>n)
{
for(int i = 0; i < n; i++)
scanf("%I64d",&num[i]);
sort(num, num+n);
LL ans = 0LL;
for(LL i = 0LL; i < n-1; i++)
ans += (i+2)*num[i];
ans += n*num[n-1];
cout<<ans<<endl;
}
}
D。樹形dp,dp[x][0]表示在經過這個節點對於他的上面沒有出現1的情況(對於上面來說這個節點沒有1,有兩種情況:1,就是這個節點以及它的所有子節點沒有出現過1;2,這個節點以及子節點裡面出現了1,但是從這裡斷開了,所以對於上面來說他起到的作用就是0.),dp[x][1]表示經過這個節點出現了1的情況。
當為葉子的時候如果這個節點為1則dp[x][1] = dp[x][0] = 1,否則dp[x][1] = 0,dp[x][0] = 1。如果它的子節點中有多個1,你就要列舉選擇的是哪個1,其他的就得選擇0,所以組合一下所有的情況。
Appleman has a tree with n vertices. Some of the vertices (at least one) are colored black and other vertices are colored white.
Consider a set consisting of k (0 ≤ k < n) edges of Appleman's tree. If Appleman deletes these edges from the tree, then it will split into(k + 1) parts. Note, that each part will be a tree with colored vertices.
Now Appleman wonders, what is the number of sets splitting the tree in such a way that each resulting part will have exactly one black vertex? Find this number modulo 1000000007 (109 + 7).
The first line contains an integer n (2 ≤ n ≤ 105) — the number of tree vertices.
The second line contains the description of the tree: n - 1 integers p0, p1, ..., pn - 2 (0 ≤ pi ≤ i). Where pi means that there is an edge connecting vertex (i + 1) of the tree and vertex pi. Consider tree vertices are numbered from 0 to n - 1.
The third line contains the description of the colors of the vertices: n integers x0, x1, ..., xn - 1 (xi is either 0 or 1). If xi is equal to 1, vertex i is colored black. Otherwise, vertex i is colored white.
Output a single integer — the number of ways to split the tree modulo 1000000007 (109 + 7).
3 0 0 0 1 1
2
6 0 1 1 0 4 1 1 0 0 1 0
1
10 0 1 2 1 4 4 4 0 8 0 0 0 1 0 1 1 0 0 1
27
#include <algorithm>
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include <iomanip>
#include <stdio.h>
#include <string>
#include <queue>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#define eps 1e-10
///#define M 1000100
///#define LL __int64
#define LL long long
///#define INF 0x7ffffff
#define INF 0x3f3f3f3f
#define PI 3.1415926535898
#define zero(x) ((fabs(x)<eps)?0:x)
using namespace std;
const int maxn = 100010;
#define mod 1000000007
LL dp[maxn][2];
int num[maxn];
vector<int>g[maxn];
LL q_mod(LL a,LL b,LL n)
{
LL ret=1;
LL tmp=a;
while(b)
{
//基數存在
if(b&0x1) ret=ret*tmp%n;
tmp=tmp*tmp%n;
b>>=1;
}
return ret;
}
LL Del(LL x,LL y,LL z)
{
x=x*z;
x=x%mod;
x=x*q_mod(y,mod-2,mod);
x=x%mod;
return x;
}
void dfs(int x)
{
int flag = 0;
LL sum = 1;
int n = g[x].size();
for(int i = 0; i < n; i++)
{
int y = g[x][i];
dfs(y);
flag = 1;
sum *= dp[y][0];
sum %= mod;
}
if(!flag)
{
if(num[x])
{
dp[x][0] = 1;
dp[x][1] = 1;
}
else
{
dp[x][0] = 1;
dp[x][1] = 0;
}
return;
}
if(num[x])
{
dp[x][1] = sum;
dp[x][0] = sum;
}
else
{
dp[x][0] = sum;
dp[x][1] = 0;
for(int i = 0; i < n; i++)
{
int y = g[x][i];
dp[x][1] += Del(sum, dp[y][0], dp[y][1]);
dp[x][1] %= mod;
}
dp[x][0] += dp[x][1];
dp[x][0] %= mod;
}
return;
}
int main()
{
int n;
while(cin >>n)
{
int x;
for(int i = 0; i <= n; i++) g[i].clear();
for(int i = 1; i < n; i++)
{
scanf("%d",&x);
g[x].push_back(i);
}
for(int i = 0; i < n; i++) scanf("%d",&num[i]);
memset(dp, 0, sizeof(dp));
dfs(0);
cout<<dp[0][1]<<endl;
}
return 0;
}
相關文章
- Codeforces Round #250 (Div. 2) A-D
- Codeforces Round #256 (Div. 2)A-D
- Codeforces Round 720 (Div. 2) A-D
- Codeforces Round #673 (Div. 2)(A-D)題解
- Educational Codeforces Round 170 (Rated for Div. 2) A-D
- Educational Codeforces Round 142 (Rated for Div. 2) A-D
- Codeforces Round #844 (Div. 1 + Div. 2, based on VK Cup 2022 - Elimination Round) A-D
- Codeforces Round #639 (Div. 2)
- Codeforces Round #541 (Div. 2)
- Codeforces Round #682 (Div. 2)
- Codeforces Round #678 (Div. 2)
- Codeforces Round #747 (Div. 2)
- Codeforces Round #673 (Div. 2)
- Codeforces Round #672 (Div. 2)
- Codeforces Round #448 (Div. 2) A
- Codeforces Round #217 (Div. 2)
- Codeforces Round #256 (Div. 2)
- Codeforces Round #259 (Div. 2)
- Codeforces Round #257 (Div. 2)
- Codeforces Round #258 (Div. 2)
- Codeforces Round #171 (Div. 2)
- Codeforces Round #173 (Div. 2)
- Codeforces Round 951 (Div. 2)
- Codeforces Round 955 (Div. 2)
- Codeforces Round 953 (Div. 2)
- Codeforces Round 975 (Div. 2)
- Codeforces Round 976 (Div. 2)
- Codeforces Round 972 (Div. 2)
- Codeforces Round 979 (Div. 2)
- Codeforces Round 982 (Div. 2)
- Codeforces Round 932 (Div. 2)
- Codeforces Round 934 (Div. 2)
- Codeforces Round 940 (Div. 2)
- Codeforces Round 973 (Div. 2)
- Codeforces Round 960 (Div. 2)
- Codeforces Round 958 (Div. 2)
- Codeforces Round 961 (Div. 2)
- Codeforces Round 948 (Div. 2)