QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#739041 | #8333. Gift | zerocloud01# | WA | 66ms | 18964kb | C++20 | 1.4kb | 2024-11-12 20:40:01 | 2024-11-12 20:40:01 |
Judging History
answer
#include<bits/stdc++.h>
#define PII pair<int,int>
#define x first
#define y second
using namespace std;
const int N = 1e5 + 10;
int n;
bitset<N> vis;
vector<int> a[N];
vector<int> ci,stp;
void dfs(int lp,int p)
{
for(auto &i : a[p])
{
if(i == lp) continue;
if(vis[i])
{
ci = stp;
return ;
}
vis[i] = true;
stp.push_back(i);
dfs(p,i);
vis[i] = false;
stp.pop_back();
}
}
signed main(void)
{
cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
cin >> n;
int ans = 0;
for(int i=1;i<=n;++i)
{
int x,y; cin >> x >> y;
a[x].push_back(y), a[y].push_back(x);
}
dfs(0,1);
int p=0;
for(int i=1;i<=n;++i) if(a[i].size() >= a[p].size()) p = i;
//for(auto &i : ci) cout << i << ' ';
if(a[p].size() == 5) ans = (n-1)*2;
else
{
//stp = ci;
stp.clear();
for(int i=1;i<=n;++i) if(a[i].size() >= 4) stp.push_back(i);
sort(ci.begin(),ci.end());
for(auto &i : stp)
{
if(lower_bound(ci.begin(),ci.end(),i) != ci.end()) ans += 2;
//cout << i << ' ';
}
//puts("");
//cout << ans << ' ' << stp.size() << '\n';
ans += (n-stp.size())*ci.size();
}
cout <<ans <<'\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3640kb
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: 0
Accepted
time: 0ms
memory: 3672kb
input:
3 1 3 3 2 2 1
output:
9
result:
ok 1 number(s): "9"
Test #3:
score: 0
Accepted
time: 1ms
memory: 3968kb
input:
2332 1648 909 1676 2122 1644 1981 1106 1131 1785 239 223 618 335 1662 424 1775 889 1684 1589 52 1406 1747 1600 302 790 2056 1742 464 1706 541 1145 779 2316 833 1645 1439 859 438 1337 136 746 1565 436 1730 2079 2145 1583 1940 917 1549 1863 507 1266 367 1890 2230 13 2113 492 2109 120 1122 815 1111 134...
output:
5438224
result:
ok 1 number(s): "5438224"
Test #4:
score: -100
Wrong Answer
time: 66ms
memory: 18964kb
input:
100000 46198 33056 80285 88339 88963 925 43203 66233 13618 35880 19864 76475 90021 73072 3202 63653 41571 83067 22067 98768 10753 16653 32856 85797 3483 2064 46659 9486 23290 82179 97966 23617 81566 7334 81774 76138 10959 75816 93471 12058 97260 66262 85541 78476 67864 87220 8607 52245 38957 67603 7...
output:
1410065408
result:
wrong answer 1st numbers differ - expected: '10000000000', found: '1410065408'