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 2
2
3
3
use proconio:: input;
4
4
use programming_team_code_rust:: data_structures:: deq_agg:: DeqAgg ;
5
- use rand:: { thread_rng , Rng } ;
5
+ use rand:: { Rng , thread_rng } ;
6
6
use std:: collections:: VecDeque ;
7
7
8
8
const MOD : u64 = 998_244_353 ;
Original file line number Diff line number Diff line change 1
1
// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_1_A
2
2
3
3
use programming_team_code_rust:: data_structures:: range_container:: RangeContainer ;
4
- use rand:: { thread_rng , Rng } ;
4
+ use rand:: { Rng , thread_rng } ;
5
5
use std:: collections:: BTreeMap ;
6
6
7
7
fn main ( ) {
Original file line number Diff line number Diff line change 1
1
// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_1_A
2
2
3
3
use programming_team_code_rust:: helpers:: lis:: Lis ;
4
- use rand:: { thread_rng , Rng } ;
4
+ use rand:: { Rng , thread_rng } ;
5
5
6
6
fn lis_quadratic ( a : & [ i32 ] ) -> usize {
7
7
let n = a. len ( ) ;
Original file line number Diff line number Diff line change 1
1
//! # 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 } ;
3
3
use crate :: numbers:: fft:: fft_multiply;
4
4
5
5
fn conv ( a : & [ u64 ] , b : & [ u64 ] ) -> Vec < u64 > {
You can’t perform that action at this time.
0 commit comments