QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#64480#4433. Kitten and RoombaSa3tElSefr#AC ✓5956ms140624kbC++231.8kb2022-11-24 21:27:082022-11-24 21:27:11

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-11-24 21:27:11]
  • 评测
  • 测评结果:AC
  • 用时:5956ms
  • 内存:140624kb
  • [2022-11-24 21:27:08]
  • 提交

answer

/// Brrrr Brrrr
#pragma GCC optimize("O3")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target("avx,avx2,fma")

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

#define pb push_back
#define F first
#define S second
#define f(i, a, b)  for(int i = a; i < b; i++)
#define all(a)  a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define sz(x) (int)(x).size()
#define mp(x,y) make_pair(x,y)
#define popCnt(x) (__builtin_popcountll(x))
#define int ll

using ll = long long;
using ii = pair<int, int>;
using ull = unsigned long long;

const int N = 1e6+5, LG = 18, MOD = (119 << 23) + 1;
const long double PI = acos(-1);
const long double EPS = 1e-7;

const int dx[] = {0,0,1,-1};
const int dy[] = {1,-1,0,0};

vector<int> adj[N];
int n, c, par[N];

void dfs(int node, int par) {

    for(auto v : adj[node])
    if(v != par) {
        ::par[v] = node;
        dfs(v, node);
    }

}

void doWork() {

    cin >> n >> c;
    vector<int> deg(n + 1);
    f(i,1,n+1)adj[i].clear();
    for(int i = 1; i < n; i++) {
        int u, v;
        cin >> u >> v;
        adj[u].pb(v);
        adj[v].pb(u);
        deg[u]++;
        deg[v]++;
    }

    dfs(1, 1);
    vector<long double> p(n + 1), p2(n + 1);
    p[c] = 1.0;
    int m;  cin >> m;
    long double ans = 0.0;
    for(int i = 1; i <= m; i++) {
        int x;  cin >> x;
        long double prop = (p[x] + p2[par[x]]);
        ans += prop;
        p[x] -= prop;
        p2[x] += prop / deg[x];
        p[par[x]] += prop / deg[x];
    }

    cout << fixed << setprecision(5) << ans << '\n';
}
int32_t main() {
#ifdef ONLINE_JUDGE
    ios_base::sync_with_stdio(0);
    cin.tie(0);
#endif // ONLINE_JUDGE

    int t = 1;
    cin >> t;
    while (t--) {
        doWork();
    }
    return 0;
}

///Look at my code ya codeomk



詳細信息

Test #1:

score: 100
Accepted
time: 3727ms
memory: 128176kb

input:

2
1000000 315562
969409 917725
324847 719085
524235 603427
576843 433171
75335 238378
266746 487233
80422 95099
594363 96140
858172 261406
958326 466109
233845 350950
863969 345645
689972 81395
395383 27274
93913 208983
523722 380358
108074 172341
130041 692304
737158 383812
752080 33646
154356 6672...

output:

5.60942
5.61051

result:

ok 2 numbers

Test #2:

score: 0
Accepted
time: 678ms
memory: 26940kb

input:

3
3 3
2 1
2 3
4000000
2 1 2 1 2 3 2 3 2 3 2 1 2 3 2 1 2 3 2 1 2 3 2 3 2 3 2 3 2 1 2 3 2 1 2 3 2 1 2 1 2 1 2 1 2 1 2 1 2 3 2 1 2 3 2 3 2 3 2 3 2 1 2 1 2 1 2 1 2 1 2 1 2 3 2 1 2 1 2 3 2 3 2 1 2 3 2 3 2 1 2 1 2 1 2 3 2 3 2 3 2 3 2 1 2 3 2 1 2 1 2 3 2 3 2 1 2 3 2 3 2 3 2 3 2 3 2 1 2 3 2 1 2 3 2 1 2 1 2 ...

output:

2000496.59739
4999999.00000
666788.77808

result:

ok 3 numbers

Test #3:

score: 0
Accepted
time: 611ms
memory: 27756kb

input:

5050
178 146
7 29
45 132
140 19
48 80
50 147
24 98
176 94
45 124
3 161
36 94
4 33
24 81
94 123
4 15
12 170
152 95
55 152
24 131
94 32
121 150
37 167
146 80
65 152
99 150
24 60
8 29
5 163
64 50
93 67
19 13
24 153
80 152
29 120
67 59
138 48
5 17
19 35
94 116
57 142
80 53
6 45
29 80
150 40
47 161
62 94...

output:

3.47452
2.12500
23.95496
0.00000
2.50000
3.93596
3.10684
5.58879
3.10662
1.79167
5.55553
0.00000
4.86833
3.49933
0.00000
3.10685
5.67287
5.68328
0.00000
3.07400
4.26906
3.10685
6.26347
12.44318
4.34153
3.10685
0.00000
3.22638
3.62246
0.00000
3.82936
3.02344
4.77796
5.11235
8.00000
3.37341
5.64667
7....

result:

ok 5050 numbers

Test #4:

score: 0
Accepted
time: 3747ms
memory: 128448kb

input:

2
1000000 315562
679816 923554
749026 119526
400361 398944
729861 38631
237682 984276
240713 304346
923009 28429
705303 35145
281546 196216
128884 76719
542097 696978
832261 79936
617939 739512
639643 738806
304260 52873
63627 552308
627252 842013
683909 619035
326617 406438
159332 82575
823300 4115...

output:

4.45264
4.44664

result:

ok 2 numbers

Test #5:

score: 0
Accepted
time: 3753ms
memory: 128152kb

input:

2
1000000 315562
575035 646638
803204 719085
692015 374086
755314 193304
776395 55874
976706 805712
217914 823156
919201 953003
149774 16297
569437 50630
191605 6485
126613 286636
24494 152244
160536 434534
692015 362579
892731 521828
374895 872623
583943 946248
226984 256881
130161 826314
247361 45...

output:

5.83755
4.27158

result:

ok 2 numbers

Test #6:

score: 0
Accepted
time: 5956ms
memory: 140624kb

input:

2
1000000 941595
260117 135833
814046 740606
747365 965295
391550 71159
728551 704248
786875 854209
980320 968654
685130 721737
464879 19066
485673 803636
761076 467129
693561 787751
69739 373415
994214 367199
13100 494671
996272 547209
992937 103917
484331 476434
493297 779246
882922 78092
622726 3...

output:

8.81481
11.33210

result:

ok 2 numbers

Extra Test:

score: 0
Extra Test Passed