QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#712320#8333. GiftDGME#WA 1ms3612kbC++231.2kb2024-11-05 15:17:342024-11-05 15:17:38

Judging History

你现在查看的是最新测评结果

  • [2024-11-05 15:17:38]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3612kb
  • [2024-11-05 15:17:34]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

vector<int> adj[100001];
int st[100001], ins[100001];
int fa[100001];
int ic[100001];
int cyc = 0;
void dfs(int u) {
    st[u] = ins[u] = 1;
    for (auto x : adj[u]) {
        fa[x] = u;
        if (!st[x]) dfs(x);
        else if (ins[x]) {
            for (int k = u;k != x;k = fa[k]) {
                ic[k] = 1, ++ cyc;
            }
            ic[x] = 1;
            ++ cyc;
        }
    }
    ins[u] = 0;
}
int d[100001];
int main() {
    cin.tie(0) -> sync_with_stdio(0);
    int N;cin >> N;
    for (int i = 2;i <= N;i ++ ) {
        int x, y;cin >> x >> y;
        adj[x].push_back(y);
        adj[y].push_back(x);
        ++ d[x];
        ++ d[y];
    }
    dfs(1);
    int c = 0;
    int p = 0;
    for (int i = 1;i <= N;i ++ ) 
        if (d[i] == 5) ++ c, p = i;
    int ans = 0;

    vector<bool> ok(N + 1);
    for (auto x : adj[p]) ok[x] = 1;

    for (int i = 1;i <= N;i ++ ) 
        if (d[i] <= 3) 
            ans += (c == 2 ? ic[i] : (c == 1 ? 2 : cyc));
        else if (d[i] == 4) {
            if (ic[i]) {
                ans += (c == 2 ? 0 : (c == 1 ? (ok[i] ? 1 : 0) : 2));
            }
        } 
    cout << ans << '\n';
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3536kb

input:

6
1 2
1 3
1 4
1 5
1 6
2 3

output:

10

result:

ok 1 number(s): "10"

Test #2:

score: -100
Wrong Answer
time: 1ms
memory: 3612kb

input:

3
1 3
3 2
2 1

output:

12

result:

wrong answer 1st numbers differ - expected: '9', found: '12'