Loading [MathJax]/jax/output/HTML-CSS/jax.js
ac-library-hs-1.2.0.0: Data structures and algorithms
Safe HaskellSafe-Inferred
LanguageGHC2021

AtCoder.Internal.Math

Description

Internal math implementation.

Example

Expand
>>> import AtCoder.Internal.Math
>>> powMod 10 60 998244353 -- 10^60 mod 998244353
526662729
>>> isPrime 998244353
True
>>> isPrime 4
False
>>> invGcd 128 37
(1,24)
>>> 24 * 128 `mod` 37 == 1
True
>>> primitiveRoot 2130706433
3
>>> floorSumUnsigned 8 12 3 5
6

Since: 1.0.0.0

Synopsis

Documentation

powMod Source #

Arguments

:: HasCallStack 
=> Int

x

-> Int

n

-> Int

m

-> Int

xnmodm

Returns xnmodm.

Constraints

  • 0n
  • 1m<231

Complexity

  • O(logn)

Example

>>> let m = 998244353
>>> powMod 10 60 m -- 10^60 mod m
526662729

Since: 1.0.0.0

isPrime :: Int -> Bool Source #

M. Forisek and J. Jancina, Fast Primality Testing for Integers That Fit into a Machine Word

Constraints

  • n<4759123141(232<4759123141), otherwise the return value can lie (Wikipedia).

Complexity

  • O(klog3n), k=3

Since: 1.0.0.0

invGcd :: Int -> Int -> (Int, Int) Source #

Returns (g,x) such that g=gcd(a,b),xag(modb),0xb/g.

Constraints

  • 1b (not asserted)

Since: 1.0.0.0

primitiveRoot :: Int -> Int Source #

Returns the primitive root of the given Int.

Constraints

  • The input must be a prime number.
  • The input must be less than 231.

Since: 1.0.0.0

floorSumUnsigned :: Int -> Int -> Int -> Int -> Int Source #

Returns n1i=0a×i+bm.

Constraints

  • n<232
  • 1m<232

Complexity

  • O(logm)

Since: 1.0.0.0