QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#793263#8333. GiftMaxduan#WA 49ms18344kbC++201.8kb2024-11-29 18:06:062024-11-29 18:06:08

Judging History

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

  • [2024-11-29 18:06:08]
  • 评测
  • 测评结果:WA
  • 用时:49ms
  • 内存:18344kb
  • [2024-11-29 18:06:06]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define maxn 100005
vector<int>g[maxn];
int vis[maxn];
stack<int>st;
int du[maxn];
int cnt[maxn];
long long ans=0;
bool flag=0;

void dfs(int u,int fa){
    if(flag)return;
    //cout<<"u="<<u<<' '<<fa<<'\n';
    if(vis[u]){
        //cout<<"U="<<u<<'\n';
        int tmp=u;
        while(st.size()&&st.top()!=u){
            int nxt=st.top();
            st.pop();
            cnt[du[tmp]]--,cnt[du[nxt]]--;
            du[tmp]--,du[nxt]--;
            cnt[du[tmp]]++,cnt[du[nxt]]++;
            //for(int i=1;i<=6;i++){
            //    cout<<"i du="<<i<<' '<<du[i]<<'\n';
            //}
            
            if(!cnt[5])ans+=cnt[3]+cnt[2]+cnt[1];
            cnt[du[tmp]]--,cnt[du[nxt]]--;
            du[tmp]++,du[nxt]++;
            cnt[du[tmp]]++,cnt[du[nxt]]++;
            tmp=nxt;
        }
        if(tmp!=u){
            int nxt=u;
            cnt[du[tmp]]--,cnt[du[nxt]]--;
            du[tmp]--,du[nxt]--;
            cnt[du[tmp]]++,cnt[du[nxt]]++;
            if(!cnt[5])ans+=cnt[3]+cnt[2]+cnt[1];
            cnt[du[tmp]]--,cnt[du[nxt]]--;
            du[tmp]++,du[nxt]++;
            cnt[du[tmp]]++,cnt[du[nxt]]++;
            tmp=nxt;
        }
        flag=1;
        return;
    }
    st.push(u);
    vis[u]=1;
    for(auto v:g[u]){
        if(v==fa)continue;
        dfs(v,u);
    }
}

void solve(){
    int n;cin>>n;
    for(int i=1;i<=n;i++){
        int u,v;cin>>u>>v;
        g[u].push_back(v);
        g[v].push_back(u);
        du[u]++;
        du[v]++;
    }
    for(int i=1;i<=n;i++){
        cnt[du[i]]++;
    }
    dfs(1,0);
    cout<<ans;
}

signed main(){
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int TT=1;//cin>>TT;
    while(TT--){
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 3604kb

input:

3
1 3
3 2
2 1

output:

9

result:

ok 1 number(s): "9"

Test #3:

score: 0
Accepted
time: 1ms
memory: 3832kb

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: 0
Accepted
time: 49ms
memory: 18344kb

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:

10000000000

result:

ok 1 number(s): "10000000000"

Test #5:

score: 0
Accepted
time: 36ms
memory: 13912kb

input:

100000
54772 14057
70680 93042
84913 63248
79360 97774
84190 60881
31137 29439
99037 81117
38579 32074
31206 19912
70774 23067
60717 79586
83847 43306
55351 50174
32566 70092
22736 92279
55916 20029
41571 63309
33143 65579
35033 3869
50038 4275
59533 25348
53092 32698
27604 14678
6802 18226
23173 96...

output:

5017400000

result:

ok 1 number(s): "5017400000"

Test #6:

score: -100
Wrong Answer
time: 15ms
memory: 8332kb

input:

50000
26768 20197
5956 49805
44024 45008
29783 4843
7173 42904
36329 3666
1258 35410
1245 42591
41226 20145
41177 25916
38397 36431
3822 43842
414 31694
28969 33316
47036 42639
5433 1631
26813 16959
17557 18806
45146 10231
26867 24805
4416 45505
44772 32136
26263 17264
43426 20507
26630 4199
9781 89...

output:

94053

result:

wrong answer 1st numbers differ - expected: '94055', found: '94053'