Skip to main content

GeneralWeightedMatching

Struct GeneralWeightedMatching 

Source
pub struct GeneralWeightedMatching {
    size: usize,
    weight: Vec<Vec<i64>>,
    mate: Vec<usize>,
    matching_weight: i64,
}

Fields§

§size: usize§weight: Vec<Vec<i64>>§mate: Vec<usize>§matching_weight: i64

Implementations§

Source§

impl GeneralWeightedMatching

Source

pub fn new(size: usize) -> Self

Examples found in repository?
crates/competitive/src/graph/general_weighted_matching.rs (line 33)
32    pub fn from_edges(size: usize, edges: &[(usize, usize, i64)]) -> Self {
33        let mut gm = Self::new(size);
34        for &(u, v, w) in edges {
35            gm.add_edge(u, v, w);
36        }
37        gm
38    }
Source

pub fn add_edge(&mut self, u: usize, v: usize, w: i64)

Examples found in repository?
crates/competitive/src/graph/general_weighted_matching.rs (line 35)
32    pub fn from_edges(size: usize, edges: &[(usize, usize, i64)]) -> Self {
33        let mut gm = Self::new(size);
34        for &(u, v, w) in edges {
35            gm.add_edge(u, v, w);
36        }
37        gm
38    }
Source

pub fn from_edges(size: usize, edges: &[(usize, usize, i64)]) -> Self

Examples found in repository?
crates/library_checker/src/graph/general_weighted_matching.rs (line 10)
6pub fn general_weighted_matching(reader: impl Read, mut writer: impl Write) {
7    let s = read_all_unchecked(reader);
8    let mut scanner = Scanner::new(&s);
9    scan!(scanner, n, m, uvw: [(usize, usize, i64); m]);
10    let mut gm = GeneralWeightedMatching::from_edges(n, &uvw);
11    let (w, matching) = gm.maximum_weight_matching();
12    writeln!(writer, "{} {}", matching.len(), w).ok();
13    for (u, v) in matching {
14        writeln!(writer, "{} {}", u, v).ok();
15    }
16}
Source

pub fn maximum_weight_matching(&mut self) -> (i64, Vec<(usize, usize)>)

Examples found in repository?
crates/library_checker/src/graph/general_weighted_matching.rs (line 11)
6pub fn general_weighted_matching(reader: impl Read, mut writer: impl Write) {
7    let s = read_all_unchecked(reader);
8    let mut scanner = Scanner::new(&s);
9    scan!(scanner, n, m, uvw: [(usize, usize, i64); m]);
10    let mut gm = GeneralWeightedMatching::from_edges(n, &uvw);
11    let (w, matching) = gm.maximum_weight_matching();
12    writeln!(writer, "{} {}", matching.len(), w).ok();
13    for (u, v) in matching {
14        writeln!(writer, "{} {}", u, v).ok();
15    }
16}
Source

fn compute(&mut self)

Examples found in repository?
crates/competitive/src/graph/general_weighted_matching.rs (line 40)
39    pub fn maximum_weight_matching(&mut self) -> (i64, Vec<(usize, usize)>) {
40        self.compute();
41        let mut res = Vec::with_capacity(self.size / 2);
42        for v in 0..self.size {
43            let u = self.mate[v];
44            if u != !0 && v < u {
45                res.push((v, u));
46            }
47        }
48        (self.matching_weight, res)
49    }

Trait Implementations§

Source§

impl Clone for GeneralWeightedMatching

Source§

fn clone(&self) -> GeneralWeightedMatching

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GeneralWeightedMatching

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToArrayVecScalar for T

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.