File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33use proconio:: input;
44use programming_team_code_rust:: data_structures:: deq_agg:: DeqAgg ;
5- use rand:: { thread_rng , Rng } ;
5+ use rand:: { Rng , thread_rng } ;
66use std:: collections:: VecDeque ;
77
88const MOD : u64 = 998_244_353 ;
Original file line number Diff line number Diff line change 11// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_1_A
22
33use programming_team_code_rust:: data_structures:: range_container:: RangeContainer ;
4- use rand:: { thread_rng , Rng } ;
4+ use rand:: { Rng , thread_rng } ;
55use std:: collections:: BTreeMap ;
66
77fn main ( ) {
Original file line number Diff line number Diff line change 11// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_1_A
22
33use programming_team_code_rust:: helpers:: lis:: Lis ;
4- use rand:: { thread_rng , Rng } ;
4+ use rand:: { Rng , thread_rng } ;
55
66fn lis_quadratic ( a : & [ i32 ] ) -> usize {
77 let n = a. len ( ) ;
Original file line number Diff line number Diff line change 11//! # Count the number of paths of each length in a tree
2- use crate :: graphs:: cent_decomp:: { cent_decomp , CentDecompDfs } ;
2+ use crate :: graphs:: cent_decomp:: { CentDecompDfs , cent_decomp } ;
33use crate :: numbers:: fft:: fft_multiply;
44
55fn conv ( a : & [ u64 ] , b : & [ u64 ] ) -> Vec < u64 > {
You can’t perform that action at this time.
0 commit comments