- Readings:
- Contests :
- Codeforces Beta Round #59 (Div. 2)
- Rating : 1266 ( -76 )
- Problems Solved : 2
- Score : 1090
- Notes from mistakes today :
- On UVA always re-check multi-input problems weather I reset the storage or not.
- hashCode() & equals() must be implemented together.
- Use the custom Parser for Java Std Input in large data input problems to avoid TLE.
- keep a minimum rate of a new topic daily.
- ID : UVA - 10600 - ACM Contest and Blackout
- Status : Accepted
- Type : Graph MST .
- Time : 2 Hours to Submission.
- Language : Java
- Solution :
- Find MST
- Find MST in every time you remove an edge from the Original MST
- Problems :
- Make sure the MST is not the Original MST by removing the edges from the original MST and looping through all edges.
- Make sure the second minimum MST is larger than the Original MST.