Submission #592193

# Submission time Handle Problem Language Result Execution time Memory
592193 2022-07-08T18:16:21 Z Kipras Colouring a rectangle (eJOI19_colouring) C++17
0 / 100
18 ms 24316 KB
#include <bits/stdc++.h>
 
typedef long long ll;
 
using namespace std;
 
const ll maxN = 5e5+10;
 
ll n, m;
ll v[maxN]={0};
vector<ll> adj[maxN];
map<pair<ll, ll>, ll> a;
 
int main()
{
 
    ios_base::sync_with_stdio(0);cin.tie(nullptr);
 
    cin>>n>>m;
    for(int i = 0; i < m; i++){
        ll aa, bb, cc;
        cin>>aa>>bb>>cc;
        v[aa]+=cc;
        v[bb]+=cc;
        adj[aa].push_back(bb);
        adj[bb].push_back(aa);
        a[{aa, bb}]=cc;
        a[{bb, aa}]=cc;
    }
 
    ll res=0;
 
    for(int i = 1; i <= n; i++){
        res=max(res, v[i]);
        for(ll x = 0; x < (ll)(adj[i].size())-1; x++){
            ll v=adj[i][x], vv=adj[i][x+1];
            if(a.count({i, x})){
                res=max(res, a[{i, v}]+a[{i, vv}]+a[{v, vv}]);
            }
        }
    }
 
    cout<<res;
 
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 11988 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 11988 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 11988 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 11988 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 18 ms 24292 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 16 ms 24316 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 11988 KB Output isn't correct
2 Halted 0 ms 0 KB -