Acwing杯第18周周赛

AcWing 3988. 不同的数

#include <iostream>
#include <cstring>
#include <algorithm>
#include <unordered_map>

using namespace std;

const int N = 110;
unordered_map<int, int> mp;

int main()
{
    int n, k;
    cin >> n >> k;
    
    for (int i = 1; i <= n; i ++ )
    {
        int x;
        cin >> x;

        mp[x] = i;
    }
    
    if (mp.size() < k)
    {
        puts("NO");
    }
    else 
    {
        puts("YES");
        int cnt = 0;
        for (auto [x, v] : mp)
        {
            if (++ cnt > k) break;
            cout << v << ' ';
        }
    }
    
    return 0;
}

AcWing 3989. 看图做题

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

int main()
{
    int n, m;
    scanf("%d%d", &n, &m);
    
    int res = 1, cnt = 1;
    while (cnt != n)
    {
        res += cnt * 12;
        cnt ++ ;
    }
    
    cout << res << endl;
    
    return 0;
}

AcWing 3990. 砍树

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 100010, M = N * 2;

int n;
int h[N], e[M], ne[M], idx;
int ans;

void add(int a, int b)
{
    e[idx] = b, ne[idx] = h[a], h[a] = idx ++;
}

int dfs(int u, int father)
{
    int son = 1;
    for (int i = h[u]; ~i; i = ne[i])
    {
        int j = e[i];
        if (j == father) continue;
        int s = dfs(j, u);
        if (s % 2 == 0) ans ++ ;
        son += s;
    }
    return son;
}

int main()
{
    scanf("%d", &n);
    
    if (n % 2)
    {
        puts("-1");
        return 0;
    }
    memset(h, -1, sizeof h);
    for (int i = 0; i < n - 1; i ++ )
    {
        int a, b;
        scanf("%d %d", &a, &b);
        add(a, b), add(b, a);
    }
    
    dfs(1, -1);
    
    cout << ans << endl;
    
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Shirandexiaowo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值