Task: | Tietoverkko |
Sender: | mooc.fi~486604 |
Submission time: | 2021-10-06 14:04:50 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 25 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 10 |
#2 | ACCEPTED | 15 |
#3 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
#2 | ACCEPTED | 0.08 s | 2, 3 | details |
#3 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
#include <iostream> #include <vector> #include <map> using namespace std; int N; vector<pair<long long int,long long int>> v[200001]; long long int sum; bool tama=false; map<pair<long long int, long long int>, short int > juu; vector<long long int> kerro; long long int haku(long long int s, long long int e,long long int target){ long long int ssumma=1; for(auto u: v[s]){ if(u.first!=e&&u.second==target){ juu[{s, u.first}]=1; int uusi = haku(u.first, s, target); kerro.push_back(uusi); tama=true; } if(u.first!=e&&u.second>target) ssumma+=haku(u.first, s, target); } return ssumma; } int main() { long long int i,a,b,c; sum=0; cin>>N; vector<vector<long long int>> di; //a ja b pitää olla long long, mutta miksi? for(i=0; i<N-1; i++){ cin>>a>>b>>c; di.push_back({c,a,b}); v[a].push_back({b,c}); v[b].push_back({a,c}); } long long int vasen, oikea; for(auto kl: di){ if(juu[{kl[2],kl[1]}]||juu[{kl[1],kl[2]}]) continue; vasen=haku(kl[1], kl[2] , kl[0]); oikea=haku(kl[2], kl[1], kl[0]); juu[{kl[2], kl[1]}]=1; if(tama){ kerro.push_back(vasen); kerro.push_back(oikea); long long int maara=kerro.size(); for(int ri=0; ri<maara; ri++){ for( int rj=ri; rj<maara; rj++){ if(ri==rj) continue; sum+=kl[0]*kerro[ri]*kerro[rj]; } } tama=false; kerro.clear(); continue; } sum+= kl[0]*vasen*oikea; } cout<<sum; return 0; }
Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
100 1 2 74 1 3 100 2 4 50 3 5 40 ... |
correct output |
---|
88687 |
user output |
---|
88687 |
Test 2
Group: 2, 3
Verdict: ACCEPTED
input |
---|
5000 1 2 613084013 1 3 832364259 2 4 411999902 3 5 989696303 ... |
correct output |
---|
1103702320243776 |
user output |
---|
1103702320243776 |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 1 2 613084013 1 3 832364259 2 4 411999902 3 5 989696303 ... |
correct output |
---|
1080549209850010931 |
user output |
---|
(empty) |