[−][src]Struct contest_algorithms::arq_tree::SupplyDemand
Supply & Demand, based on https://codeforces.com/gym/102218/problem/F modify(i, i, &(p, o)) increases supply by p and demand by o at time i. query(l, r) computes total supply and demand at times l to r, as well as
Trait Implementations
impl ArqSpec for SupplyDemand
[src]
type F = (i64, i64)
Type of data representing an endomorphism.
type M = (i64, i64, i64)
Type of monoid elements.
fn compose(_: &Self::F, _: &Self::F) -> Self::F
[src]
fn apply((p_add, o_add): &Self::F, (p, o, _): &Self::M) -> Self::M
[src]
fn op((p1, o1, s1): &Self::M, (p2, o2, s2): &Self::M) -> Self::M
[src]
fn identity() -> Self::M
[src]
Auto Trait Implementations
impl Send for SupplyDemand
impl Unpin for SupplyDemand
impl Sync for SupplyDemand
impl UnwindSafe for SupplyDemand
impl RefUnwindSafe for SupplyDemand
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,