├── .clang-format ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Checker ├── Adapters │ ├── BZOJJudger.cpp │ ├── DefaultJudger.cpp │ ├── LOJJudger.cpp │ └── UOJJudger.cpp ├── CMakeLists.txt ├── Checker.cpp ├── CheckerConfig.hpp.in ├── Common.cpp ├── Common.hpp ├── Judger.cpp ├── Judger.hpp ├── Network.cpp ├── Network.hpp ├── OJAPI.cpp ├── OJAPI.hpp ├── OJAdapter.cpp ├── OJAdapter.hpp ├── Platforms │ ├── Linux │ │ ├── PerfAnalyzer.cpp │ │ ├── PerfAnalyzer.hpp │ │ ├── PlatformLinux.cpp │ │ ├── PlatformLinux.hpp │ │ └── RunnerLinux.cpp │ ├── Platform.hpp │ └── Windows │ │ ├── PlatformWindows.cpp │ │ ├── PlatformWindows.hpp │ │ └── RunnerWindows.cpp ├── Runner.hpp ├── RunnerShared.cpp ├── Scanner.cpp ├── Scanner.hpp ├── Test │ ├── CheckerTest.cpp │ └── CheckerTestGen.cpp ├── Timer.cpp ├── Timer.hpp └── readme.md ├── OI-Source.code-workspace ├── Queue.md ├── Review ├── Backmatter.tex ├── Bib.tex ├── CG │ ├── Base.tex │ ├── CG.tex │ ├── Circle.tex │ ├── Convex.tex │ ├── Delaunay.tex │ ├── HPI.tex │ ├── Nearest.tex │ └── RCA.tex ├── Combinatorics │ ├── Bell.tex │ ├── BoxAndBall.tex │ ├── Catalan.tex │ ├── Combinatorics.tex │ ├── Lucas.tex │ ├── Permutation.tex │ └── Stirling.tex ├── DP │ ├── Bag.tex │ ├── Convex.tex │ ├── DP.tex │ ├── Dynamic.tex │ ├── Link.tex │ ├── Mono.tex │ ├── MultiBag.cpp │ ├── Number.tex │ ├── Power.tex │ ├── Quad.tex │ ├── Queue.tex │ ├── SDP.tex │ └── Slope.tex ├── DataStructure │ ├── BIT.tex │ ├── BST.tex │ ├── DLX.tex │ ├── DSU.tex │ ├── DataStructure.tex │ ├── ETT.tex │ ├── Functional.tex │ ├── HashTable.tex │ ├── Heap.tex │ ├── K-DTree.tex │ ├── LCT.tex │ ├── OldDriverTree.tex │ ├── PartitionedTree.cpp │ ├── PartitionedTree.tex │ ├── RandomTestA.cpp │ ├── RandomTestB.cpp │ ├── SegTree.tex │ └── UVA11987.cpp ├── GameTheory │ ├── AlphaBeta.tex │ ├── GameTheory.tex │ ├── Nim.tex │ ├── NimSG.cpp │ └── SGFunction.tex ├── Graph │ ├── 2-SAT.tex │ ├── CST.tex │ ├── Chord.tex │ ├── CutVertex.cpp │ ├── CutVertexAndBridge.tex │ ├── DominatorTree.tex │ ├── EulerPath.cpp │ ├── Graph.tex │ ├── Matching.tex │ ├── Other.tex │ ├── PEBC.tex │ ├── Path.tex │ └── SCC.tex ├── LinearAlgebra │ ├── Base.tex │ ├── Det.tex │ ├── Gauss.tex │ ├── InvMatGauss.cpp │ ├── LUP.tex │ ├── LeastSquares.tex │ ├── LinearAlgebra.tex │ └── LinearRecurrence.tex ├── Main.tex ├── Math │ ├── BerlekampMassey.tex │ ├── CharacteristicEquation.tex │ ├── Equation.tex │ ├── GeneratingFunction.tex │ ├── GeneratingGraph.tex │ ├── Inversion.tex │ ├── LIP.tex │ ├── LinearIP.tex │ ├── Math.tex │ ├── Probability.tex │ ├── Simpson.tex │ └── Taylor.tex ├── MathSymbol.tex ├── NetworkFlows │ ├── BGJudge.cpp │ ├── BipartiteGraph.tex │ ├── Gomory-HuTree.tex │ ├── LimitedNetworkFlows.tex │ ├── MCMF.tex │ ├── MaxFlow.tex │ ├── Models.tex │ ├── NetworkFlows.tex │ ├── PreFlow.cpp │ └── Tricks.tex ├── NumberTheory │ ├── CRT.tex │ ├── Dirichlet.tex │ ├── DiscreteLogarithm.tex │ ├── Euclidlike.tex │ ├── Euler.tex │ ├── GCD.tex │ ├── MultiplicativeFunction.tex │ ├── NumberTheory.tex │ ├── PollardRho.tex │ ├── PrimalityTest.tex │ ├── PrimitiveRoot.tex │ ├── RSA.tex │ ├── Residue.tex │ └── Sieve.tex ├── Optmize │ ├── FP.tex │ ├── GD.cpp │ ├── LP.tex │ ├── Optmize.tex │ ├── OptmizeMethod.tex │ └── Random.tex ├── Other │ ├── IOGen.cpp │ ├── IOTest.hpp │ ├── IOTestA.cpp │ ├── IOTestB.cpp │ ├── IOTestC.cpp │ ├── Mat.cpp │ ├── Other.tex │ ├── Owys.tex │ └── TricksAndIdeas.tex ├── Path │ ├── DCS.tex │ ├── KthSP.tex │ ├── Path.tex │ └── SMSSP.tex ├── Polynomial │ ├── Advanced.tex │ ├── FFT.tex │ ├── FMT.tex │ ├── FWT.tex │ ├── Module.tex │ ├── NTT.tex │ ├── Optmize.tex │ ├── Perf │ │ ├── LOJ150.cpp │ │ ├── LinuxTimer.hpp │ │ ├── MulTest.cpp │ │ ├── NTT.hpp │ │ ├── PolyExp.hpp │ │ ├── PolyExpTest.cpp │ │ ├── PolyInv.hpp │ │ ├── PolyInvTest.cpp │ │ ├── PolySqrt.hpp │ │ ├── PolySqrtTest.cpp │ │ ├── TestLib.hpp │ │ └── WindowsTimer.hpp │ └── Polynomial.tex ├── Recommendation.tex ├── SetAndGroupTheory │ ├── Lagrange.tex │ ├── PermutationGroups.tex │ ├── SetAndGroupTheory.tex │ └── SetTheory.tex ├── Source ├── SpanningTree │ ├── Kruskal.tex │ ├── MST.tex │ ├── Manhattan.tex │ ├── MatrixTree.tex │ ├── SpanningTree.tex │ └── SteinerTree.tex ├── String │ ├── ACM.tex │ ├── BOP.cpp │ ├── Convolution.tex │ ├── Hash.tex │ ├── Huffman.tex │ ├── KMP.tex │ ├── LLH.cpp │ ├── Manacher.tex │ ├── Min.tex │ ├── PAM.tex │ ├── Parser.tex │ ├── SA.tex │ ├── SAM.tex │ ├── SC.tex │ ├── ST.tex │ ├── String.tex │ ├── Trie.tex │ └── ZAlgorithm.tex ├── Summary │ ├── Input.tex │ ├── Keyword.tex │ ├── LinkBlock.tex │ ├── Summary.tex │ └── Time.tex ├── Theory │ ├── Analysis.tex │ ├── Coding.tex │ ├── NP.tex │ ├── Sort.tex │ └── Theory.tex ├── Tree │ ├── CBD.tex │ ├── Diameter.tex │ ├── DsuOnTree.tex │ ├── LCA.tex │ ├── PBD.tex │ ├── Purfer.tex │ ├── Tarjan.cpp │ ├── Tree.tex │ └── VirtualTree.tex ├── charCounter.cpp └── mypic.jpg ├── Source ├── 2-SAT │ ├── 3209.cpp │ ├── bzoj2649.cpp │ └── bzoj3495.cpp ├── ACM │ ├── BZOJ2780.cpp │ └── LOJ2180.cpp ├── BBT │ └── 3721.cpp ├── Block │ ├── 2801.cpp │ ├── 2801FHQTreap.cpp │ ├── 3396.cpp │ ├── 3591.cpp │ ├── 3645.cpp │ ├── 4108.cpp │ ├── LOJ2874.cpp │ ├── LOJ6277.cpp │ ├── LOJ6278.cpp │ ├── LOJ6279.cpp │ ├── LOJ6280.cpp │ ├── LOJ6281.cpp │ ├── LOJ6282.cpp │ ├── LOJ6283.cpp │ ├── LOJ6284.cpp │ ├── LOJ6285.cpp │ └── bzoj2741.cpp ├── CBD │ ├── CF1009F.cpp │ ├── LOJ2079.cpp │ ├── LOJ2558.cpp │ ├── LOJ2558BIT.cpp │ └── bzoj4543.cpp ├── CDQ │ ├── 3206.cpp │ ├── LOJ2049.cpp │ └── bzoj2989.cpp ├── CG │ ├── 3236.cpp │ ├── BZOJ4138.cpp │ ├── CIRUT.cpp │ └── LOJ6360.cpp ├── CST │ ├── 4320-bzoj3331.cpp │ ├── 4630.cpp │ ├── LOJ10099.cpp │ ├── LOJ2062A.cpp │ ├── LOJ2062B.cpp │ ├── LOJ2562.cpp │ ├── LOJ2587.cpp │ └── bzoj2125-Luogu5236.cpp ├── Cacti │ ├── 3687.cpp │ ├── 4244.cpp │ └── 4630.cpp ├── ChordAndMCS │ └── 3196.cpp ├── Competition │ ├── APIO │ │ ├── LOJ2310.cpp │ │ ├── LOJ2567.cpp │ │ ├── LOJ2586.cpp │ │ ├── LOJ2586LUT.cpp │ │ ├── LOJ2586Tab.cpp │ │ ├── LOJ2886.cpp │ │ ├── LOJ2886WA.cpp │ │ ├── LOJ2887A.cpp │ │ ├── LOJ2887B.cpp │ │ └── LOJ2887TLE.cpp │ ├── CTSC │ │ ├── LOJ2261.cpp │ │ ├── LOJ2263.cpp │ │ ├── LOJ2264A.cpp │ │ ├── LOJ2264B.cpp │ │ ├── LOJ2552.cpp │ │ ├── LOJ2555.cpp │ │ ├── LOJ2987.cpp │ │ └── LOJ3122.cpp │ ├── CodePlus6 │ │ ├── box.cpp │ │ ├── factor.cpp │ │ ├── tree.cpp │ │ ├── zuma.cpp │ │ └── zuma2.cpp │ ├── FCS2019 │ │ ├── Day1 │ │ │ ├── highway.cpp │ │ │ ├── highwayC.cpp │ │ │ ├── sailing.cpp │ │ │ ├── sailingC.cpp │ │ │ └── shopping.cpp │ │ ├── Day2 │ │ │ ├── farmer.cpp │ │ │ ├── farmerC.cpp │ │ │ ├── farmerSeg.cpp │ │ │ ├── max.cpp │ │ │ └── maxC.cpp │ │ ├── Day3 │ │ │ ├── game.cpp │ │ │ ├── game2.cpp │ │ │ ├── gameC.cpp │ │ │ └── string.cpp │ │ ├── Day4 │ │ │ ├── paths.cpp │ │ │ ├── paths2.cpp │ │ │ ├── quiz.cpp │ │ │ └── racing.cpp │ │ ├── Day5 │ │ │ ├── number.cpp │ │ │ ├── number2.cpp │ │ │ ├── numberC.cpp │ │ │ ├── table.cpp │ │ │ ├── table2.cpp │ │ │ └── tableC.cpp │ │ ├── Day6 │ │ │ ├── blue.cpp │ │ │ ├── blueC.cpp │ │ │ ├── secretC.cpp │ │ │ └── set.cpp │ │ └── Day7 │ │ │ ├── cac.cpp │ │ │ ├── cacdbg.cpp │ │ │ ├── island.cpp │ │ │ └── riverC.cpp │ ├── Multi2019 │ │ ├── LOJ3048.cpp │ │ ├── LOJ3050.cpp │ │ ├── LOJ3050Test1.cpp │ │ ├── LOJ3050Test2.cpp │ │ ├── LOJ3050Test3.cpp │ │ ├── LOJ3052.cpp │ │ └── LOJ3052LinearWA.cpp │ ├── NOI │ │ ├── LOJ2083.cpp │ │ ├── LOJ2084.cpp │ │ ├── LOJ2086.cpp │ │ ├── LOJ2129.cpp │ │ ├── LOJ2130.cpp │ │ ├── LOJ2132.cpp │ │ ├── LOJ2246A.cpp │ │ ├── LOJ2246B.cpp │ │ ├── LOJ2248.cpp │ │ ├── LOJ2249A.cpp │ │ ├── LOJ2302.cpp │ │ ├── LOJ2303.cpp │ │ ├── LOJ2305.cpp │ │ ├── LOJ2444.cpp │ │ ├── LOJ2445.cpp │ │ ├── LOJ2667.cpp │ │ ├── LOJ2667Hacked.cpp │ │ ├── LOJ2669.cpp │ │ ├── LOJ2670.cpp │ │ ├── LOJ2672.cpp │ │ ├── LOJ2718.cpp │ │ └── LOJ2721.cpp │ ├── THUPC2019 │ │ └── LOJ6620.cpp │ └── ZJOI2019 │ │ └── LOJ3043.cpp ├── Count │ ├── 2532.cpp │ ├── 3200.cpp │ ├── 3200CRT.cpp │ ├── 3757.cpp │ ├── 4187.cpp │ ├── 4678.cpp │ ├── CF348D.cpp │ ├── LOJ2027.cpp │ ├── LOJ547.cpp │ ├── LOJ6358.cpp │ ├── SP9507.cpp │ ├── bzoj2111.cpp │ ├── bzoj3198.cpp │ └── bzoj3501.cpp ├── DDP │ ├── 4513.cpp │ ├── LOJ2269.cpp │ ├── LOJ2955.cpp │ └── bzoj4712.cpp ├── DP │ ├── 1912.cpp │ ├── 2254.cpp │ ├── 2317.cpp │ ├── 2900.cpp │ ├── 3503.cpp │ ├── 3572.cpp │ ├── 3594.cpp │ ├── 3594G.cpp │ ├── 4104.cpp │ ├── 4127.cpp │ ├── 4577.cpp │ ├── 4767.cpp │ ├── 4769.cpp │ ├── 4769test.cpp │ ├── CF691E.cpp │ ├── CF868F.cpp │ ├── HDU5956.cpp │ ├── LOJ10188.cpp │ ├── LOJ10190.cpp │ ├── LOJ10192.cpp │ ├── LOJ2074.cpp │ ├── LOJ2110.cpp │ ├── LOJ2124.cpp │ ├── LOJ2157.cpp │ ├── LOJ2157B.cpp │ ├── LOJ2249.cpp │ ├── LOJ2353.cpp │ ├── LOJ2356.cpp │ ├── LOJ2481.cpp │ ├── LOJ2483DC.cpp │ ├── LOJ2483RBHPI.cpp │ ├── LOJ2688.cpp │ ├── LOJ535.cpp │ ├── LOJ6039.cpp │ ├── LOJ6081.cpp │ ├── P3994.cpp │ ├── bzoj2096.cpp │ ├── bzoj2739.cpp │ ├── bzoj3583.cpp │ ├── bzoj3675nklg.cpp │ ├── bzoj4709.cpp │ └── bzoj5311TLE.cpp ├── DSU │ └── BZOJ3712.cpp ├── Divide │ └── bzoj3110.cpp ├── DominatorTree │ ├── 2597.cpp │ └── LOJ6511.cpp ├── DsuOnTree │ ├── CF570D.cpp │ └── CF741D.cpp ├── FFT NTT │ ├── 3321.cpp │ ├── 3338.cpp │ ├── 3723.cpp │ ├── 4238.cpp │ ├── 4239.cpp │ ├── 4245.cpp │ ├── 4491.cpp │ ├── 4512.cpp │ ├── 4721.cpp │ ├── 4725.cpp │ ├── 4726.cpp │ ├── 5205.cpp │ ├── BZOJ3160.cpp │ ├── BZOJ4259.cpp │ ├── BZOJ4503.cpp │ ├── CF528D.cpp │ ├── CF553E.cpp │ ├── CF623E.cpp │ ├── CF662C.cpp │ ├── CF923E.cpp │ ├── LOJ150.cpp │ ├── LOJ151.cpp │ ├── LOJ2020.cpp │ ├── LOJ2058.cpp │ ├── LOJ2183.cpp │ ├── LOJ2527.cpp │ ├── LOJ2541.cpp │ ├── LOJ556.cpp │ ├── LOJ556X.cpp │ ├── LOJ6261.cpp │ ├── LOJ6261Test.cpp │ ├── LOJ6388.cpp │ ├── LOJ6503.cpp │ └── P4191.cpp ├── FHQTreap │ ├── 2596.cpp │ ├── 3165.cpp │ ├── 3278.cpp │ ├── 3285.cpp │ ├── 3285.txt │ ├── 3285gen.cpp │ ├── 3835.cpp │ └── LOJ516.cpp ├── FWT FMT │ ├── CF850E.cpp │ ├── LOJ152.cpp │ ├── LOJ153.cpp │ ├── LOJ154TLE.cpp │ ├── LOJ570.cpp │ ├── LuoguP5387.cpp │ ├── LuoguP5387TestA.cpp │ └── LuoguP5387TestB.cpp ├── Fractional Programming │ ├── 1642.cpp │ ├── 3288.cpp │ ├── LOJ2071.cpp │ ├── LOJ2214.cpp │ └── LOJ2734.cpp ├── Game Theory │ ├── 2197.cpp │ ├── 2252.cpp │ ├── 2252test.cpp │ ├── 2575.cpp │ ├── 2964.cpp │ ├── 2964dp.cpp │ ├── 3185.cpp │ ├── 3235.cpp │ ├── 3480.cpp │ └── 4279.cpp ├── Generating Function │ ├── 4091.cpp │ ├── 4389.cpp │ ├── 4451.cpp │ ├── 4705.cpp │ ├── BZOJ3456.cpp │ ├── BZOJ3684.cpp │ ├── CF438E.cpp │ ├── LOJ2271.cpp │ ├── LOJ2554.cpp │ └── P4548.cpp ├── Greed │ ├── 2570.cpp │ ├── BZOJ1398.cpp │ ├── LOJ6254.cpp │ ├── UOJ455WA.cpp │ └── bzoj2288.cpp ├── Groop │ ├── 4727.cpp │ ├── UVA10601.cpp │ ├── UVA10601X.cpp │ └── UVA11255.cpp ├── HPI │ ├── 2600.cpp │ ├── 3256.cpp │ ├── 3297.cpp │ ├── 4196.cpp │ └── bzoj2961.cpp ├── Hash │ └── bzoj3084TLE.cpp ├── Inversion │ ├── BZOJ3328.cpp │ └── LOJ6485.cpp ├── K-d Tree │ ├── 1648.cpp │ ├── 2093.cpp │ ├── 3769WA.cpp │ ├── 3810-2DTree.cpp │ ├── 3810-3DTree.cpp │ ├── 4148.cpp │ ├── 4169.cpp │ ├── 4793.cpp │ ├── 4793gen.cpp │ ├── LOJ6016A.cpp │ ├── LOJ6016B.cpp │ ├── bzoj2626.cpp │ ├── bzoj2648.cpp │ ├── bzoj2850.cpp │ └── bzoj4520.cpp ├── KMP │ ├── 3193.cpp │ └── LOJ2272.cpp ├── LCT │ ├── 1501.cpp │ ├── 2173.cpp │ ├── 2387.cpp │ ├── 3703.cpp │ ├── 4121.cpp │ ├── 4172.cpp │ ├── 4234.cpp │ ├── 4299A.cpp │ ├── 4299AX.cpp │ ├── 4299B.cpp │ ├── LOJ2001.cpp │ ├── LOJ2230.cpp │ ├── LOJ2245.cpp │ ├── LOJ2289.cpp │ ├── LOJ2497.cpp │ ├── LOJ558.cpp │ ├── LOJ6038.cpp │ ├── QTREE5.cpp │ ├── QTREE6A.cpp │ ├── QTREE6B.cpp │ ├── QTREE7.cpp │ ├── SP8791.cpp │ ├── UOJ207.cpp │ └── bzoj3514.cpp ├── LinearBasis │ ├── 3857.cpp │ ├── 4570.cpp │ ├── LOJ114.cpp │ ├── LOJ2312.cpp │ ├── bzoj4184.cpp │ ├── bzoj4184B.cpp │ └── bzoj4269.cpp ├── Link │ ├── 3190.cpp │ ├── 3886.cpp │ ├── 5056.cpp │ └── bzoj2310.cpp ├── Matrix │ ├── LOJ10025.cpp │ ├── LOJ2106.cpp │ ├── P3216.cpp │ ├── P5107.cpp │ ├── P5107B.cpp │ ├── P5110.cpp │ ├── P5110B.cpp │ ├── P5110Test.cpp │ └── bzoj4128.cpp ├── MergableHeap │ ├── 4331.cpp │ ├── CF671D.cpp │ └── bzoj2809.cpp ├── MinMax │ ├── LOJ2127.cpp │ └── LOJ2542.cpp ├── Mobius │ ├── 2257.cpp │ ├── 3455.cpp │ ├── 4318.cpp │ ├── LOJ2000.cpp │ ├── LOJ2000TLE.cpp │ ├── LOJ2095.cpp │ ├── LOJ2565.cpp │ └── LOJ528.cpp ├── Network Flows │ ├── 2046.cpp │ ├── 2057.cpp │ ├── 2172.cpp │ ├── 2469.cpp │ ├── 2570.cpp │ ├── 2754.cpp │ ├── 2761.cpp │ ├── 2762.cpp │ ├── 2763.cpp │ ├── 2764.cpp │ ├── 2766.cpp │ ├── 2770.cpp │ ├── 2774.cpp │ ├── 3163.cpp │ ├── 3254.cpp │ ├── 3280.cpp │ ├── 3329.cpp │ ├── 3355.cpp │ ├── 3356.cpp │ ├── 3357.cpp │ ├── 3358.cpp │ ├── 3980.cpp │ ├── 4009.cpp │ ├── 4011.cpp │ ├── 4012.cpp │ ├── 4013.cpp │ ├── 4014.cpp │ ├── 4015.cpp │ ├── 4016.cpp │ ├── 4043.cpp │ ├── 4123.cpp │ ├── 4174.cpp │ ├── 4553.cpp │ ├── 4843.cpp │ ├── CF739E.cpp │ ├── CF786E.cpp │ ├── LOJ115.cpp │ ├── LOJ116.cpp │ ├── LOJ117.cpp │ ├── LOJ2042.cpp │ ├── LOJ2100.cpp │ ├── LOJ2321.cpp │ ├── LOJ3097.cpp │ ├── LOJ3097TLE.cpp │ ├── LOJ569.cpp │ ├── LOJ6008.cpp │ ├── LOJ6014.cpp │ ├── LOJ6045.cpp │ ├── LOJ6511.cpp │ ├── LOJ6511E.cpp │ ├── POJ2175.cpp │ ├── POJ3469.cpp │ ├── UVA10480.cpp │ ├── bzoj1066.cpp │ ├── bzoj1189.cpp │ ├── bzoj1532.cpp │ ├── bzoj2163.cpp │ ├── bzoj2288.cpp │ ├── bzoj2864.cpp │ └── bzoj4439.cpp ├── Number Theory │ ├── 3307.cpp │ ├── 3579.cpp │ ├── 4549.cpp │ ├── LOJ161.cpp │ ├── LOJ2544.cpp │ ├── LOJ6053.cpp │ ├── LOJ6241.cpp │ ├── PE484.cpp │ ├── PE639.cpp │ ├── UVA756.cpp │ ├── bzoj2705.cpp │ ├── bzoj2813.cpp │ ├── bzoj3529.cpp │ ├── bzoj3529B.cpp │ ├── bzoj3884.cpp │ ├── bzoj3994.cpp │ ├── bzoj4407.cpp │ └── bzoj4454.cpp ├── OldDriverTree │ └── CF896C.cpp ├── Optmize │ ├── 3980.cpp │ ├── LOJ2671.cpp │ ├── bzoj2428.cpp │ ├── bzoj3112A.cpp │ ├── bzoj3112B.cpp │ ├── bzoj3550.cpp │ ├── bzoj3680.cpp │ └── bzoj3680GD.cpp ├── Other │ ├── CF1060H.cpp │ └── CF1060HChecker.cpp ├── PAM │ ├── BZOJ2565.cpp │ └── SPOJNUMOFVAL.cpp ├── Partition │ ├── LOJ2049.cpp │ ├── LOJ534.cpp │ ├── LOJ6198.cpp │ ├── P4755.cpp │ ├── UVA1608.cpp │ ├── bzoj2527.cpp │ ├── bzoj2738.cpp │ └── bzoj2738SL.cpp ├── Point-Based Partition │ ├── 2056.cpp │ ├── 2664.cpp │ ├── 3345.cpp │ ├── 3676.cpp │ ├── 3727A.cpp │ ├── 3727B.cpp │ ├── 3727SGA.cpp │ ├── 4115.cpp │ ├── 4115Old.cpp │ ├── 4115queue.cpp │ ├── 4149.cpp │ ├── 4292A.cpp │ ├── 4292B.cpp │ ├── 4292C.cpp │ ├── CF100570F.cpp │ ├── LOJ2013.cpp │ ├── LOJ2065A.cpp │ ├── LOJ2065B.cpp │ ├── LOJ2179.cpp │ ├── LOJ2259.cpp │ ├── QTree5.cpp │ ├── bzoj3730.cpp │ ├── bzoj4182.cpp │ ├── bzoj4543WA.cpp │ └── bzoj4675.cpp ├── Probability │ ├── 1297.cpp │ ├── 3211.cpp │ └── 3600.cpp ├── ProjectEulerEasy │ ├── PE1.cpp │ ├── PE10.cpp │ ├── PE11.cpp │ ├── PE12.cpp │ ├── PE13.cpp │ ├── PE14.cpp │ ├── PE15.cpp │ ├── PE16.cpp │ ├── PE17.cpp │ ├── PE18.cpp │ ├── PE2.cpp │ ├── PE20.cpp │ ├── PE21.cpp │ ├── PE22.cpp │ ├── PE23.cpp │ ├── PE24.cpp │ ├── PE25.cpp │ ├── PE26.cpp │ ├── PE27.cpp │ ├── PE28.cpp │ ├── PE29.cpp │ ├── PE3.cpp │ ├── PE30.cpp │ ├── PE31.cpp │ ├── PE32.cpp │ ├── PE33.cpp │ ├── PE34.cpp │ ├── PE35.cpp │ ├── PE36.cpp │ ├── PE37.cpp │ ├── PE38.cpp │ ├── PE39.cpp │ ├── PE4.cpp │ ├── PE40.cpp │ ├── PE41.cpp │ ├── PE42.cpp │ ├── PE43.cpp │ ├── PE44.cpp │ ├── PE45.cpp │ ├── PE46.cpp │ ├── PE47.cpp │ ├── PE48.cpp │ ├── PE49.cpp │ ├── PE5.cpp │ ├── PE50.cpp │ ├── PE51.cpp │ ├── PE53.cpp │ ├── PE6.cpp │ ├── PE7.cpp │ ├── PE8.cpp │ └── PE9.cpp ├── Queue │ └── 2698.cpp ├── SA │ ├── LOJ111.cpp │ ├── LOJ2059.cpp │ ├── LOJ2133.cpp │ ├── LOJ2525.cpp │ ├── LOJ6041NSqrtNlgN.cpp │ ├── SP1811.cpp │ └── bzoj4453.cpp ├── SAM │ ├── 1117.cpp │ ├── 1368.cpp │ ├── 2178.cpp │ ├── 2463.cpp │ ├── 2852.cpp │ ├── 3181.cpp │ ├── 3346.cpp │ ├── 3763.cpp │ ├── 3975.cpp │ ├── 4022.cpp │ ├── 4070.cpp │ ├── 4081.cpp │ ├── 4094.cpp │ ├── 4248.cpp │ ├── 4770.cpp │ ├── BZOJ2780.cpp │ ├── BZOJ3277.cpp │ ├── CF235C.cpp │ ├── LOJ2033.cpp │ ├── LOJ2059.cpp │ ├── LOJ2064.cpp │ ├── LOJ2064X.cpp │ ├── LOJ2172.cpp │ ├── LOJ2377.cpp │ ├── LOJ2720lg.cpp │ ├── LOJ2720sqrt.cpp │ ├── LOJ6031.cpp │ ├── LOJ6041.cpp │ ├── LOJ6198.cpp │ ├── SP8222.cpp │ ├── bzoj2555.cpp │ └── bzoj4545.cpp ├── SSSP │ └── BZOJ2622&2617.cpp ├── Search │ ├── 2324.cpp │ └── LOJ10022.cpp ├── SegmentTree │ ├── 4097.cpp │ ├── 4198.cpp │ ├── 4254.cpp │ ├── 4556.cpp │ ├── 4587.cpp │ ├── 5025.cpp │ ├── BZOJ4695.cpp │ ├── CF786B.cpp │ ├── LOJ121.cpp │ ├── LOJ2032.cpp │ ├── LOJ2055.cpp │ ├── LOJ2116.cpp │ ├── LOJ6034.cpp │ ├── LOJ6057.cpp │ ├── LOJ6346.cpp │ ├── P4585.cpp │ ├── UOJ218.cpp │ ├── bzoj3073.cpp │ ├── bzoj3545.cpp │ ├── bzoj3585.cpp │ ├── bzoj4025.cpp │ ├── bzoj4311.cpp │ └── bzoj5312.cpp ├── Sieve │ ├── 1829.cpp │ ├── DIVCNT2.cpp │ ├── DIVCNT3.cpp │ ├── DIVCNTK.cpp │ ├── LOJ124A.cpp │ ├── LOJ124B.cpp │ ├── LOJ125.cpp │ ├── LOJ2085.cpp │ ├── LOJ2085Test.cpp │ ├── LOJ509Test.cpp │ ├── LOJ6027.cpp │ ├── LOJ6028.cpp │ ├── LOJ6229.cpp │ ├── LOJ6235.cpp │ └── LOJ6491.cpp ├── SpanningTree │ ├── 3280.cpp │ ├── 3280Tarjan.cpp │ └── LOJ6271.cpp ├── Splay │ └── LOJ516.cpp ├── Swap │ ├── 3207.cpp │ └── 4128.cpp ├── TopSort │ ├── 3573.cpp │ └── CF915D.cpp ├── TreeOfTree │ ├── 1527.cpp │ ├── 2617.cpp │ ├── 3242.cpp │ ├── 3248.cpp │ ├── 3380.cpp │ ├── 3759.cpp │ ├── 4093.cpp │ └── 4728.cpp ├── Trie │ ├── 3449.cpp │ ├── 3732.cpp │ ├── 4098.cpp │ ├── 4592.cpp │ └── 4735.cpp ├── Virtual Tree │ ├── 3320.cpp │ ├── 3783.cpp │ ├── 4426.cpp │ ├── CF613D.cpp │ ├── LOJ2206.cpp │ ├── LOJ2219.cpp │ └── bzoj3589.cpp ├── WQS │ ├── 2619.cpp │ ├── CF321E.cpp │ ├── CF739E.cpp │ ├── LOJ2478.cpp │ ├── bzoj3675nlg.cpp │ ├── bzoj4367.cpp │ └── bzoj5311.cpp └── ZAlgorithm │ └── P3893.cpp ├── TemplateList.md ├── Templates ├── 2-SAT.cpp ├── ACM.cpp ├── AGM.cpp ├── BSGS.cpp ├── BailliePSW.cpp ├── BerlekampMassey.cpp ├── Blossom.cpp ├── Boruvka.cpp ├── CDQ.cpp ├── CIRU.cpp ├── CST.cpp ├── Catalan.cpp ├── Cover.cpp ├── DLX.cpp ├── DinicA.cpp ├── DinicB.cpp ├── DinicC.cpp ├── DsuOnTree.cpp ├── EXCRT.cpp ├── Euclidlike.cpp ├── Evaluator.cpp ├── FDSU.cpp ├── FFT.cpp ├── FMT.cpp ├── FWT.cpp ├── GBT.cpp ├── GHT.cpp ├── HLPPA.cpp ├── HLPPB.cpp ├── HPI.cpp ├── Hall.cpp ├── ISAP.cpp ├── InvMat.cpp ├── KMP.cpp ├── LCT.cpp ├── LOJ102-zkwMCMF.cpp ├── LR.cpp ├── LUP.cpp ├── Lagrange.cpp ├── Leftist Tree.cpp ├── Link.cpp ├── MCMF.cpp ├── MCS.cpp ├── MillerRabin+PollardRho.cpp ├── NOSPFA.cpp ├── NTT.cpp ├── Nearest.cpp ├── NegRing.cpp ├── PAM.cpp ├── PBD.cpp ├── PairingHeap.cpp ├── PhiMuSum.cpp ├── PohligHellman.cpp ├── PollardRhoDL.cpp ├── QuickHull2D.cpp ├── QuickHull3D.cpp ├── Rotate.cpp ├── SA.cpp ├── SAM.cpp ├── SAM2SA.cpp ├── SSKTP.cpp ├── SimplexSLP.cpp ├── Splay.cpp ├── Stoer-Wagner.cpp ├── Stoer-WagnerV3.cpp ├── TDDP.cpp ├── TMD.cpp ├── Taylor.cpp ├── TreeDivide.cpp ├── TreeHash.cpp ├── UOJ179-Simplex.cpp ├── UOJ179.py ├── VirtualTree.cpp ├── ZAlgorithm.cpp ├── exBSGS.cpp ├── fhqtreap.cpp └── min_25.cpp ├── Test ├── AGMTest.cpp ├── ArgTest.cpp ├── BitTest.cpp ├── LOJ118.cpp ├── LocaleTest.cpp ├── MulTest.cpp ├── PreDivTest.cpp ├── RegexTest.cpp ├── SieveTest.cpp ├── StatusError.cpp └── strtodTest.cpp ├── Unclassified ├── Done │ ├── 3640 │ │ ├── Task3Codes.zip │ │ ├── bin │ │ │ ├── FloydWarshall.cppx │ │ │ ├── Gamble1.cppx │ │ │ ├── Gamble2.cppx │ │ │ ├── ModifiedDijkstra.cppx │ │ │ ├── OptimizedBellmanFord.cppx │ │ │ └── RecursiveBacktracking.cppx │ │ ├── checker.cpp │ │ ├── data │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ ├── 5.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ ├── Dijkstra.cpp │ │ │ ├── Floyd.cpp │ │ │ ├── Gamble.cpp │ │ │ ├── SPFA.cpp │ │ │ ├── SPFA2.cpp │ │ │ └── args.txt │ │ └── tmp.txt │ ├── 4137 │ │ ├── 4137.cpp │ │ ├── 4137gen.cpp │ │ └── 4137std.cpp │ ├── 4639 │ │ ├── 4639.cpp │ │ └── compile.bat │ ├── 1004.cpp │ ├── 1005.cpp │ ├── 1006.cpp │ ├── 1024.cpp │ ├── 1027.cpp │ ├── 1041.cpp │ ├── 1049.cpp │ ├── 1054.cpp │ ├── 1057.cpp │ ├── 1064.cpp │ ├── 1070.cpp │ ├── 1072.cpp │ ├── 1073.cpp │ ├── 1076.cpp │ ├── 1077.cpp │ ├── 1078.cpp │ ├── 1108.cpp │ ├── 1110.cpp │ ├── 1111.cpp │ ├── 1113.cpp │ ├── 1114.cpp │ ├── 1119.cpp │ ├── 1120.cpp │ ├── 1122.cpp │ ├── 1128.cpp │ ├── 1129.cpp │ ├── 1131.cpp │ ├── 1134.cpp │ ├── 1137.cpp │ ├── 1144.cpp │ ├── 1155.cpp │ ├── 1155old.cpp │ ├── 1156.cpp │ ├── 1158.cpp │ ├── 1159.cpp │ ├── 1169.cpp │ ├── 1171.cpp │ ├── 1175.cpp │ ├── 1176.cpp │ ├── 1182.cpp │ ├── 1183.cpp │ ├── 1186.cpp │ ├── 1191.cpp │ ├── 1194.cpp │ ├── 1195.cpp │ ├── 1196.cpp │ ├── 1197.cpp │ ├── 1220.cpp │ ├── 1224.cpp │ ├── 1231.cpp │ ├── 1232.cpp │ ├── 1251.cpp │ ├── 1260.cpp │ ├── 1262.cpp │ ├── 1265.cpp │ ├── 1266.cpp │ ├── 1273.cpp │ ├── 1282.cpp │ ├── 1284.cpp │ ├── 1295.cpp │ ├── 1297.cpp │ ├── 1309.cpp │ ├── 1323.cpp │ ├── 1333.cpp │ ├── 1336.cpp │ ├── 1337.cpp │ ├── 1339.cpp │ ├── 1342.cpp │ ├── 1343.cpp │ ├── 1344.cpp │ ├── 1346.cpp │ ├── 1352.cpp │ ├── 1354.cpp │ ├── 1355.cpp │ ├── 1356.cpp │ ├── 1377.cpp │ ├── 1390.cpp │ ├── 1392.cpp │ ├── 1394.cpp │ ├── 1396.cpp │ ├── 1397.cpp │ ├── 1397old.cpp │ ├── 1401.cpp │ ├── 1402.cpp │ ├── 1407.cpp │ ├── 1412.cpp │ ├── 1414.cpp │ ├── 1417.cpp │ ├── 1419.cpp │ ├── 1430.cpp │ ├── 1437.cpp │ ├── 1440.cpp │ ├── 1445.cpp │ ├── 1446.cpp │ ├── 1447.cpp │ ├── 1450.cpp │ ├── 1462.cpp │ ├── 1463.cpp │ ├── 1466.cpp │ ├── 1472.cpp │ ├── 1483.cpp │ ├── 1486.cpp │ ├── 1491.cpp │ ├── 1494.cpp │ ├── 1499.cpp │ ├── 1499WA40.cpp │ ├── 1502.cpp │ ├── 1503.cpp │ ├── 1511.cpp │ ├── 1513.cpp │ ├── 1514.cpp │ ├── 1516.cpp │ ├── 1525.cpp │ ├── 1529.cpp │ ├── 1530.cpp │ ├── 1537.cpp │ ├── 1542.cpp │ ├── 1546.cpp │ ├── 1550.cpp │ ├── 1552.cpp │ ├── 1552TLE.cpp │ ├── 1559.cpp │ ├── 1564.cpp │ ├── 1565.cpp │ ├── 1576.cpp │ ├── 1592.cpp │ ├── 1602.cpp │ ├── 1608.cpp │ ├── 1613.cpp │ ├── 1621.cpp │ ├── 1625.cpp │ ├── 1630.cpp │ ├── 1631.cpp │ ├── 1637.cpp │ ├── 1638.cpp │ ├── 1640.cpp │ ├── 1641.cpp │ ├── 1645.cpp │ ├── 1650.cpp │ ├── 1653.cpp │ ├── 1656.cpp │ ├── 1659.cpp │ ├── 1712.cpp │ ├── 1714.cpp │ ├── 1715.cpp │ ├── 1730.cpp │ ├── 1737.cpp │ ├── 1748.cpp │ ├── 1767.cpp │ ├── 1769.cpp │ ├── 1772.cpp │ ├── 1773.cpp │ ├── 1776.cpp │ ├── 1782.cpp │ ├── 1783.cpp │ ├── 1801.cpp │ ├── 1835.cpp │ ├── 1840.cpp │ ├── 1841.cpp │ ├── 1842.cpp │ ├── 1852.cpp │ ├── 1854.cpp │ ├── 1856.cpp │ ├── 1873.cpp │ ├── 1875.cpp │ ├── 1878.cpp │ ├── 1879.cpp │ ├── 1880.cpp │ ├── 1890.cpp │ ├── 1892.cpp │ ├── 1896.cpp │ ├── 1901.cpp │ ├── 1903.cpp │ ├── 1938.cpp │ ├── 1948.cpp │ ├── 1954.cpp │ ├── 1971.cpp │ ├── 1973.cpp │ ├── 1975.cpp │ ├── 1975.cpp~ │ ├── 1982.cpp │ ├── 1983.cpp │ ├── 1991.cpp │ ├── 1995.cpp │ ├── 1995old.cpp │ ├── 2002.cpp │ ├── 2003.cpp │ ├── 2015.cpp │ ├── 2016.cpp │ ├── 2024.cpp │ ├── 2032.cpp │ ├── 2034.cpp │ ├── 2042.cpp │ ├── 2044.cpp │ ├── 2047.cpp │ ├── 2048.cpp │ ├── 2050.cpp │ ├── 2052.cpp │ ├── 2053.cpp │ ├── 2054.cpp │ ├── 2055.cpp │ ├── 2059.cpp │ ├── 2060.cpp │ ├── 2061.cpp │ ├── 2062.cpp │ ├── 2065.cpp │ ├── 20652.cpp │ ├── 2070.cpp │ ├── 2071.cpp │ ├── 2082.cpp │ ├── 2085.cpp │ ├── 2086.cpp │ ├── 2086WA.cpp │ ├── 2086WA2.cpp │ ├── 2094.cpp │ ├── 2107.cpp │ ├── 2109.cpp │ ├── 2114.cpp │ ├── 2115.cpp │ ├── 2144.cpp │ ├── 2146.cpp │ ├── 2147.cpp │ ├── 2148.cpp │ ├── 2148table.cpp │ ├── 2149.cpp │ ├── 2151.cpp │ ├── 2153.cpp │ ├── 2154.cpp │ ├── 2155.cpp │ ├── 2157.cpp │ ├── 2170.cpp │ ├── 2176.cpp │ ├── 2183.cpp │ ├── 2184.cpp │ ├── 2205.cpp │ ├── 2207.cpp │ ├── 2212.cpp │ ├── 2214.cpp │ ├── 2215.cpp │ ├── 2216.cpp │ ├── 2219.cpp │ ├── 2220.cpp │ ├── 2221.cpp │ ├── 2246.cpp │ ├── 2247.cpp │ ├── 2253.cpp │ ├── 2255.cpp │ ├── 2260.cpp │ ├── 2261.cpp │ ├── 2279.cpp │ ├── 2285.cpp │ ├── 2286.cpp │ ├── 2290.cpp │ ├── 2292.cpp │ ├── 2294.cpp │ ├── 2303.cpp │ ├── 2305.cpp │ ├── 2318.cpp │ ├── 2320.cpp │ ├── 2323.cpp │ ├── 2327.cpp │ ├── 2336.cpp │ ├── 2338.cpp │ ├── 2341.cpp │ ├── 2342.cpp │ ├── 2344.cpp │ ├── 2345.cpp │ ├── 2350.cpp │ ├── 2354.cpp │ ├── 2357.cpp │ ├── 2358.cpp │ ├── 2359.cpp │ ├── 2367.cpp │ ├── 2388.cpp │ ├── 2391.cpp │ ├── 2394.cpp │ ├── 2397.cpp │ ├── 2398.cpp │ ├── 2401.cpp │ ├── 2402.cpp │ ├── 2403.cpp │ ├── 2412.cpp │ ├── 2414.cpp │ ├── 2414TLE.cpp │ ├── 2417.cpp │ ├── 2420.cpp │ ├── 2422.cpp │ ├── 2446.cpp │ ├── 2448.cpp │ ├── 2461.cpp │ ├── 2464.cpp │ ├── 2464TLE.cpp │ ├── 2467.cpp │ ├── 2468.cpp │ ├── 2468WA20.cpp │ ├── 2469.cpp │ ├── 2470.cpp │ ├── 2471.cpp │ ├── 2472.cpp │ ├── 2473.cpp │ ├── 2474.cpp │ ├── 2475.cpp │ ├── 2476.cpp │ ├── 2480.cpp │ ├── 2483.cpp │ ├── 2484.cpp │ ├── 2485.cpp │ ├── 2486.cpp │ ├── 2487.cpp │ ├── 2489.cpp │ ├── 2490.cpp │ ├── 2491.cpp │ ├── 2495.cpp │ ├── 2496Unknown.cpp │ ├── 2498.cpp │ ├── 2501.cpp │ ├── 2502.cpp │ ├── 2503.cpp │ ├── 2505.cpp │ ├── 2508.cpp │ ├── 2509.cpp │ ├── 2511.cpp │ ├── 2512.cpp │ ├── 2513.cpp │ ├── 25132.cpp │ ├── 2515.cpp │ ├── 2518.cpp │ ├── 2519.cpp │ ├── 2520.cpp │ ├── 2521.cpp │ ├── 2522.cpp │ ├── 25222.cpp │ ├── 2555.cpp │ ├── 2564.cpp │ ├── 2567.cpp │ ├── 2568.cpp │ ├── 2568tmp.cpp │ ├── 2569.cpp │ ├── 2569t.cpp │ ├── 2571.cpp │ ├── 2572.cpp │ ├── 2577.cpp │ ├── 2585.cpp │ ├── 2590.cpp │ ├── 2592.cpp │ ├── 2594.cpp │ ├── 2597.cpp │ ├── 2598.cpp │ ├── 2599.cpp │ ├── 2601.cpp │ ├── 2601TLE.cpp │ ├── 2602.cpp │ ├── 2604.cpp │ ├── 2605.cpp │ ├── 2607.cpp │ ├── 2609.cpp │ ├── 2610.cpp │ ├── 2613.cpp │ ├── 2613B.cpp │ ├── 2618.cpp │ ├── 2622.cpp │ ├── 2624'.cpp │ ├── 2624.cpp │ ├── 2625.cpp │ ├── 2629.cpp │ ├── 2633.cpp │ ├── 2633TLE.cpp │ ├── 2634.cpp │ ├── 2654.cpp │ ├── 2657.cpp │ ├── 2667.cpp │ ├── 2700.cpp │ ├── 2704.cpp │ ├── 2717.cpp │ ├── 2731.cpp │ ├── 2734.cpp │ ├── 2738.cpp │ ├── 2740.cpp │ ├── 2746.cpp │ ├── 2747.cpp │ ├── 2751.cpp │ ├── 2756.cpp │ ├── 2759.cpp │ ├── 2765.cpp │ ├── 2777.cpp │ ├── 2805.cpp │ ├── 2824.cpp │ ├── 2825.cpp │ ├── 2831.cpp │ ├── 2832.cpp │ ├── 2835.cpp │ ├── 2842.cpp │ ├── 2846.cpp │ ├── 2851.cpp │ ├── 2853.cpp │ ├── 2872.cpp │ ├── 2879.cpp │ ├── 2880.cpp │ ├── 2882.cpp │ ├── 2888.cpp │ ├── 2894.cpp │ ├── 2912.cpp │ ├── 2915.cpp │ ├── 2966.cpp │ ├── 2982.cpp │ ├── 2986.cpp │ ├── 3003.cpp │ ├── 3008.cpp │ ├── 3026.cpp │ ├── 3038.cpp │ ├── 3038ac.cpp │ ├── 3045.cpp │ ├── 3047.cpp │ ├── 3048.cpp │ ├── 3071.cpp │ ├── 3080.cpp │ ├── 3084.cpp │ ├── 3092.cpp │ ├── 3093.cpp │ ├── 30932.cpp │ ├── 3106.cpp │ ├── 3110.cpp │ ├── 3112.cpp │ ├── 3114.cpp │ ├── 3118.cpp │ ├── 3118WA.cpp │ ├── 3128.cpp │ ├── 3147.cpp │ ├── 3152.cpp │ ├── 3153.cpp │ ├── 3157.cpp │ ├── 3159.cpp │ ├── 3166.cpp │ ├── 3168.cpp │ ├── 3171.cpp │ ├── 3172.cpp │ ├── 3174.cpp │ ├── 3177.cpp │ ├── 3178.cpp │ ├── 3195.cpp │ ├── 3197.cpp │ ├── 3199.cpp │ ├── 3201.cpp │ ├── 3203.cpp │ ├── 3205.cpp │ ├── 3214.cpp │ ├── 3214dp.cpp │ ├── 3214test.cpp │ ├── 3222.cpp │ ├── 3222WA80.cpp │ ├── 3224.cpp │ ├── 3224TLE.cpp │ ├── 3225.cpp │ ├── 3227.cpp │ ├── 3228.cpp │ ├── 3231.cpp │ ├── 3231WA.cpp │ ├── 3232.cpp │ ├── 3233.cpp │ ├── 3233old.cpp │ ├── 3238.cpp │ ├── 3246.cpp │ ├── 3250.cpp │ ├── 3258.cpp │ ├── 3261.cpp │ ├── 3264.cpp │ ├── 3265.cpp │ ├── 3267.cpp │ ├── 3268.cpp │ ├── 3273.cpp │ ├── 3273WA.cpp │ ├── 3275.cpp │ ├── 3279.cpp │ ├── 3281.cpp │ ├── 3292.cpp │ ├── 3293.cpp │ ├── 3294.cpp │ ├── 3295.cpp │ ├── 3302.cpp │ ├── 3304.cpp │ ├── 3305.cpp │ ├── 3306.cpp │ ├── 3309.cpp │ ├── 3311.cpp │ ├── 3312.cpp │ ├── 3313.cpp │ ├── 3317.cpp │ ├── 3324.cpp │ ├── 3327.cpp │ ├── 3332.cpp │ ├── 3336.cpp │ ├── 3343.cpp │ ├── 3353.cpp │ ├── 3369.cpp │ ├── 3377.cpp │ ├── 3384.cpp │ ├── 3389.cpp │ ├── 3391.cpp │ ├── 3393.cpp │ ├── 3398.cpp │ ├── 3402.cpp │ ├── 3402TLE.cpp │ ├── 3404.cpp │ ├── 3411.cpp │ ├── 3414.cpp │ ├── 3498.cpp │ ├── 3522.cpp │ ├── 3531.cpp │ ├── 3565.cpp │ ├── 3567.cpp │ ├── 3605.cpp │ ├── 3609.cpp │ ├── 3619.cpp │ ├── 3620.cpp │ ├── 3621.cpp │ ├── 3627.cpp │ ├── 3628.cpp │ ├── 3642.cpp │ ├── 3642WA30.cpp │ ├── 3642err.cpp │ ├── 3643-WA.cpp │ ├── 3643.cpp │ ├── 3644.cpp │ ├── 3644WA55.cpp │ ├── 3648.cpp │ ├── 3653.cpp │ ├── 3659.cpp │ ├── 3660.cpp │ ├── 3661.cpp │ ├── 3662.cpp │ ├── 3663.cpp │ ├── 3672.cpp │ ├── 3674.cpp │ ├── 3676TLE.cpp │ ├── 3688.cpp │ ├── 3690TLE.cpp │ ├── 3698.cpp │ ├── 3702.cpp │ ├── 3704.cpp │ ├── 3704TLE60.cpp │ ├── 3705.cpp │ ├── 3706.cpp │ ├── 3706RE60.cpp │ ├── 3706SparseMatrix40.cpp │ ├── 3707.cpp │ ├── 3708.cpp │ ├── 3719.cpp │ ├── 3740.cpp │ ├── 3745.cpp │ ├── 3746.cpp │ ├── 3746mat.cpp │ ├── 3747.cpp │ ├── 3749.cpp │ ├── 3750.cpp │ ├── 3752.cpp │ ├── 3755.cpp │ ├── 3758.cpp │ ├── 3760.cpp │ ├── 3768-WA60.cpp │ ├── 3768.cpp │ ├── 3773.cpp │ ├── 3806.cpp │ ├── 3813.cpp │ ├── 3819.cpp │ ├── 3822.cpp │ ├── 3823.cpp │ ├── 3825.cpp │ ├── 3829.cpp │ ├── 3830.cpp │ ├── 3833.cpp │ ├── 3842.cpp │ ├── 3868.cpp │ ├── 3871.cpp │ ├── 3879.cpp │ ├── 3880.cpp │ ├── 3899.cpp │ ├── 3899WA36.cpp │ ├── 3901.cpp │ ├── 3902.cpp │ ├── 3904.cpp │ ├── 3908.cpp │ ├── 3908test.cpp │ ├── 3909.cpp │ ├── 3913.cpp │ ├── 3914.cpp │ ├── 3916.cpp │ ├── 3917.cpp │ ├── 3927.cpp │ ├── 3929.cpp │ ├── 3931.cpp │ ├── 3932.cpp │ ├── 3935.cpp │ ├── 3938.cpp │ ├── 3939.cpp │ ├── 3941.cpp │ ├── 3942.cpp │ ├── 3948.cpp │ ├── 3950.cpp │ ├── 3953.cpp │ ├── 3959.cpp │ ├── 3960.cpp │ ├── 3964.cpp │ ├── 3965.cpp │ ├── 3966.cpp │ ├── 39662.cpp │ ├── 3970.cpp │ ├── 3974.cpp │ ├── 3978.cpp │ ├── 3997.cpp │ ├── 3997WA.cpp │ ├── 3998.cpp │ ├── 4000.cpp │ ├── 4000test.cpp │ ├── 4001.cpp │ ├── 4008.cpp │ ├── 4027WA.cpp │ ├── 4031.cpp │ ├── 4032MLE.cpp │ ├── 4054.cpp │ ├── 4060.cpp │ ├── 4064.cpp │ ├── 4064overflow20.cpp │ ├── 4070TLE.cpp │ ├── 4071.cpp │ ├── 4072.cpp │ ├── 4072TLE60.cpp │ ├── 4092.cpp │ ├── 4101.cpp │ ├── 4113.cpp │ ├── 4114.cpp │ ├── 4116.cpp │ ├── 4124.cpp │ ├── 4126.cpp │ ├── 4130.cpp │ ├── 4131.cpp │ ├── 4151.cpp │ ├── 4155.cpp │ ├── 4180.cpp │ ├── 4180WA20.cpp │ ├── 4207.cpp │ ├── 4208.cpp │ ├── 4211.cpp │ ├── 4216.cpp │ ├── 4219.cpp │ ├── 4219TLE50.cpp │ ├── 4247.cpp │ ├── 4250.cpp │ ├── 4251.cpp │ ├── 4284.cpp │ ├── 4301.cpp │ ├── 4306.cpp │ ├── 4322.cpp │ ├── 4336.cpp │ ├── 4340.cpp │ ├── 4358.cpp │ ├── 4361.cpp │ ├── 4363.cpp │ ├── 4363AlphaBeta.cpp │ ├── 4364.cpp │ ├── 4404.cpp │ ├── 4424.cpp │ ├── 4427Delta.cpp │ ├── 4427TA.cpp │ ├── 4454.cpp │ ├── 4455.cpp │ ├── 4456.cpp │ ├── 4457.cpp │ ├── 4458.cpp │ ├── 4458Area.cpp │ ├── 4458gen.cpp │ ├── 4462.cpp │ ├── 4482HashWrong.cpp │ ├── 4503.cpp │ ├── 4526.cpp │ ├── 4564.cpp │ ├── 4578.cpp │ ├── 4602.cpp │ ├── 4620.cpp │ ├── 4631.cpp │ ├── 4724.cpp │ ├── 4735.cpp │ ├── 4768.cpp │ ├── 4774.cpp │ ├── 4820.cpp │ ├── BST │ │ └── BST.cpp │ ├── CF915E.cpp │ ├── CF920F.cpp │ ├── FFT.cpp │ ├── FJ-0527 │ │ ├── cheese │ │ │ └── cheese.cpp │ │ ├── complexity │ │ │ └── complexity.cpp │ │ ├── math │ │ │ └── math.cpp │ │ ├── park │ │ │ └── park.cpp │ │ ├── phalanx │ │ │ └── phalanx.cpp │ │ └── treasure │ │ │ └── treasure.cpp │ ├── Fib │ │ ├── Fib.cpp │ │ └── mat.txt │ ├── Fib2 │ │ └── Fib2.cpp │ ├── KMP │ │ └── kmp.cpp │ ├── LAN.cpp │ ├── SA │ │ └── SA.cpp │ ├── SAM.cpp │ ├── TA.cpp │ ├── auto │ │ ├── auto.cpp │ │ └── autotmp.cpp │ ├── bintree.cpp │ ├── box │ │ └── box.cpp │ ├── building.cpp │ ├── color.cpp │ ├── compute │ │ └── main.cpp │ ├── cow.cpp │ ├── cut │ │ └── cut.cpp │ ├── cycle │ │ └── cycle.cpp │ ├── dog.cpp │ ├── drink │ │ └── drink.cpp │ ├── energy │ │ └── energy.cpp │ ├── fib.cpp │ ├── fiborial.cpp │ ├── hero │ │ └── hero.cpp │ ├── link │ │ ├── link.cpp │ │ └── link2.cpp │ ├── lucas │ │ └── lucas.cpp │ ├── manager │ │ └── manager.cpp │ ├── mat │ │ ├── mat.cpp │ │ └── mat.txt │ ├── match │ │ ├── match.cpp │ │ └── match2.cpp │ ├── mean.cpp │ ├── mean2.cpp │ ├── mod.cpp │ ├── mul.cpp │ ├── mul │ │ └── mul.cpp │ ├── nth.cpp │ ├── pair.cpp │ ├── random │ │ ├── mat.txt │ │ └── random.cpp │ ├── range │ │ ├── range.cpp │ │ └── range2.cpp │ ├── saw.cpp │ ├── seq.cpp │ ├── space.cpp │ ├── stream │ │ └── stream.cpp │ ├── string │ │ └── string.cpp │ ├── test.cpp │ ├── tree │ │ └── tree.cpp │ ├── var.cpp │ ├── weight │ │ └── weight.cpp │ ├── word │ │ └── word.cpp │ ├── words │ │ └── words.cpp │ ├── xor.cpp │ └── xor │ │ └── xor.cpp ├── ToDo.txt └── ToDo │ ├── 1335 │ ├── 1335.cpp │ └── run.bat │ ├── 3782 │ ├── 3782.cpp │ └── check.cpp │ ├── 2020.cpp │ ├── 2081.cpp │ ├── 2304.cpp │ ├── 2305.cpp │ ├── 2500.cpp │ ├── 3219.cpp │ ├── 3240.cpp │ ├── 3301.cpp │ ├── 3689.cpp │ ├── 3699.cpp │ ├── 3700.cpp │ ├── 3770.cpp │ ├── 3771C.cpp │ ├── 3772B.cpp │ ├── 3780.cpp │ ├── 4006E.cpp │ ├── 4175.cpp │ ├── 4191D.cpp │ ├── 4337.cpp │ ├── 4338.cpp │ ├── 4357.cpp │ ├── 4382.cpp │ ├── 4428.cpp │ ├── 4428test.cpp │ ├── 4429.cpp │ ├── 4463.cpp │ ├── 4463dp.cpp │ ├── 4484.cpp │ ├── 4484double.cpp │ ├── 4484test.cpp │ ├── 4492.cpp │ ├── 4501.cpp │ ├── 4501std.cpp │ ├── 4577.cpp │ ├── 4587F.cpp │ ├── 4605.cpp │ ├── 4606.cpp │ ├── 4618.cpp │ ├── 4619.cpp │ ├── 4629.cpp │ ├── 4635.cpp │ ├── 4643.cpp │ └── testdata.txt ├── keyboard.cpp ├── keyboard.md ├── readme.md └── url.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Checker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/CMakeLists.txt -------------------------------------------------------------------------------- /Checker/Checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Checker.cpp -------------------------------------------------------------------------------- /Checker/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Common.cpp -------------------------------------------------------------------------------- /Checker/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Common.hpp -------------------------------------------------------------------------------- /Checker/Judger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Judger.cpp -------------------------------------------------------------------------------- /Checker/Judger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Judger.hpp -------------------------------------------------------------------------------- /Checker/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Network.cpp -------------------------------------------------------------------------------- /Checker/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Network.hpp -------------------------------------------------------------------------------- /Checker/OJAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/OJAPI.cpp -------------------------------------------------------------------------------- /Checker/OJAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/OJAPI.hpp -------------------------------------------------------------------------------- /Checker/OJAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/OJAdapter.cpp -------------------------------------------------------------------------------- /Checker/OJAdapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/OJAdapter.hpp -------------------------------------------------------------------------------- /Checker/Runner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Runner.hpp -------------------------------------------------------------------------------- /Checker/RunnerShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/RunnerShared.cpp -------------------------------------------------------------------------------- /Checker/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Scanner.cpp -------------------------------------------------------------------------------- /Checker/Scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Scanner.hpp -------------------------------------------------------------------------------- /Checker/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Timer.cpp -------------------------------------------------------------------------------- /Checker/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/Timer.hpp -------------------------------------------------------------------------------- /Checker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Checker/readme.md -------------------------------------------------------------------------------- /OI-Source.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/OI-Source.code-workspace -------------------------------------------------------------------------------- /Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Queue.md -------------------------------------------------------------------------------- /Review/Backmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Backmatter.tex -------------------------------------------------------------------------------- /Review/Bib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Bib.tex -------------------------------------------------------------------------------- /Review/CG/Base.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/Base.tex -------------------------------------------------------------------------------- /Review/CG/CG.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/CG.tex -------------------------------------------------------------------------------- /Review/CG/Circle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/Circle.tex -------------------------------------------------------------------------------- /Review/CG/Convex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/Convex.tex -------------------------------------------------------------------------------- /Review/CG/Delaunay.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/Delaunay.tex -------------------------------------------------------------------------------- /Review/CG/HPI.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/HPI.tex -------------------------------------------------------------------------------- /Review/CG/Nearest.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/Nearest.tex -------------------------------------------------------------------------------- /Review/CG/RCA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/CG/RCA.tex -------------------------------------------------------------------------------- /Review/DP/Bag.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Bag.tex -------------------------------------------------------------------------------- /Review/DP/Convex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Convex.tex -------------------------------------------------------------------------------- /Review/DP/DP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/DP.tex -------------------------------------------------------------------------------- /Review/DP/Dynamic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Dynamic.tex -------------------------------------------------------------------------------- /Review/DP/Link.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Link.tex -------------------------------------------------------------------------------- /Review/DP/Mono.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Mono.tex -------------------------------------------------------------------------------- /Review/DP/MultiBag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/MultiBag.cpp -------------------------------------------------------------------------------- /Review/DP/Number.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Number.tex -------------------------------------------------------------------------------- /Review/DP/Power.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Power.tex -------------------------------------------------------------------------------- /Review/DP/Quad.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Quad.tex -------------------------------------------------------------------------------- /Review/DP/Queue.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Queue.tex -------------------------------------------------------------------------------- /Review/DP/SDP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/SDP.tex -------------------------------------------------------------------------------- /Review/DP/Slope.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/DP/Slope.tex -------------------------------------------------------------------------------- /Review/GameTheory/Nim.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/GameTheory/Nim.tex -------------------------------------------------------------------------------- /Review/GameTheory/NimSG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/GameTheory/NimSG.cpp -------------------------------------------------------------------------------- /Review/Graph/2-SAT.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/2-SAT.tex -------------------------------------------------------------------------------- /Review/Graph/CST.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/CST.tex -------------------------------------------------------------------------------- /Review/Graph/Chord.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/Chord.tex -------------------------------------------------------------------------------- /Review/Graph/CutVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/CutVertex.cpp -------------------------------------------------------------------------------- /Review/Graph/EulerPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/EulerPath.cpp -------------------------------------------------------------------------------- /Review/Graph/Graph.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/Graph.tex -------------------------------------------------------------------------------- /Review/Graph/Matching.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/Matching.tex -------------------------------------------------------------------------------- /Review/Graph/Other.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/Other.tex -------------------------------------------------------------------------------- /Review/Graph/PEBC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/PEBC.tex -------------------------------------------------------------------------------- /Review/Graph/Path.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/Path.tex -------------------------------------------------------------------------------- /Review/Graph/SCC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Graph/SCC.tex -------------------------------------------------------------------------------- /Review/Main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Main.tex -------------------------------------------------------------------------------- /Review/Math/Equation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/Equation.tex -------------------------------------------------------------------------------- /Review/Math/Inversion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/Inversion.tex -------------------------------------------------------------------------------- /Review/Math/LIP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/LIP.tex -------------------------------------------------------------------------------- /Review/Math/LinearIP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/LinearIP.tex -------------------------------------------------------------------------------- /Review/Math/Math.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/Math.tex -------------------------------------------------------------------------------- /Review/Math/Probability.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/Probability.tex -------------------------------------------------------------------------------- /Review/Math/Simpson.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/Simpson.tex -------------------------------------------------------------------------------- /Review/Math/Taylor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Math/Taylor.tex -------------------------------------------------------------------------------- /Review/MathSymbol.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/MathSymbol.tex -------------------------------------------------------------------------------- /Review/NumberTheory/CRT.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/NumberTheory/CRT.tex -------------------------------------------------------------------------------- /Review/NumberTheory/GCD.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/NumberTheory/GCD.tex -------------------------------------------------------------------------------- /Review/NumberTheory/RSA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/NumberTheory/RSA.tex -------------------------------------------------------------------------------- /Review/Optmize/FP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Optmize/FP.tex -------------------------------------------------------------------------------- /Review/Optmize/GD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Optmize/GD.cpp -------------------------------------------------------------------------------- /Review/Optmize/LP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Optmize/LP.tex -------------------------------------------------------------------------------- /Review/Optmize/Optmize.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Optmize/Optmize.tex -------------------------------------------------------------------------------- /Review/Optmize/Random.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Optmize/Random.tex -------------------------------------------------------------------------------- /Review/Other/IOGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/IOGen.cpp -------------------------------------------------------------------------------- /Review/Other/IOTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/IOTest.hpp -------------------------------------------------------------------------------- /Review/Other/IOTestA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/IOTestA.cpp -------------------------------------------------------------------------------- /Review/Other/IOTestB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/IOTestB.cpp -------------------------------------------------------------------------------- /Review/Other/IOTestC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/IOTestC.cpp -------------------------------------------------------------------------------- /Review/Other/Mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/Mat.cpp -------------------------------------------------------------------------------- /Review/Other/Other.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/Other.tex -------------------------------------------------------------------------------- /Review/Other/Owys.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Other/Owys.tex -------------------------------------------------------------------------------- /Review/Path/DCS.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Path/DCS.tex -------------------------------------------------------------------------------- /Review/Path/KthSP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Path/KthSP.tex -------------------------------------------------------------------------------- /Review/Path/Path.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Path/Path.tex -------------------------------------------------------------------------------- /Review/Path/SMSSP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Path/SMSSP.tex -------------------------------------------------------------------------------- /Review/Polynomial/FFT.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Polynomial/FFT.tex -------------------------------------------------------------------------------- /Review/Polynomial/FMT.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Polynomial/FMT.tex -------------------------------------------------------------------------------- /Review/Polynomial/FWT.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Polynomial/FWT.tex -------------------------------------------------------------------------------- /Review/Polynomial/NTT.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Polynomial/NTT.tex -------------------------------------------------------------------------------- /Review/Recommendation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Recommendation.tex -------------------------------------------------------------------------------- /Review/Source: -------------------------------------------------------------------------------- 1 | ../ -------------------------------------------------------------------------------- /Review/SpanningTree/MST.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/SpanningTree/MST.tex -------------------------------------------------------------------------------- /Review/String/ACM.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/ACM.tex -------------------------------------------------------------------------------- /Review/String/BOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/BOP.cpp -------------------------------------------------------------------------------- /Review/String/Hash.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/Hash.tex -------------------------------------------------------------------------------- /Review/String/Huffman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/Huffman.tex -------------------------------------------------------------------------------- /Review/String/KMP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/KMP.tex -------------------------------------------------------------------------------- /Review/String/LLH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/LLH.cpp -------------------------------------------------------------------------------- /Review/String/Manacher.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/Manacher.tex -------------------------------------------------------------------------------- /Review/String/Min.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/Min.tex -------------------------------------------------------------------------------- /Review/String/PAM.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/PAM.tex -------------------------------------------------------------------------------- /Review/String/Parser.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/Parser.tex -------------------------------------------------------------------------------- /Review/String/SA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/SA.tex -------------------------------------------------------------------------------- /Review/String/SAM.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/SAM.tex -------------------------------------------------------------------------------- /Review/String/SC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/SC.tex -------------------------------------------------------------------------------- /Review/String/ST.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/ST.tex -------------------------------------------------------------------------------- /Review/String/String.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/String.tex -------------------------------------------------------------------------------- /Review/String/Trie.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/String/Trie.tex -------------------------------------------------------------------------------- /Review/Summary/Input.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Summary/Input.tex -------------------------------------------------------------------------------- /Review/Summary/Keyword.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Summary/Keyword.tex -------------------------------------------------------------------------------- /Review/Summary/Summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Summary/Summary.tex -------------------------------------------------------------------------------- /Review/Summary/Time.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Summary/Time.tex -------------------------------------------------------------------------------- /Review/Theory/Analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Theory/Analysis.tex -------------------------------------------------------------------------------- /Review/Theory/Coding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Theory/Coding.tex -------------------------------------------------------------------------------- /Review/Theory/NP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Theory/NP.tex -------------------------------------------------------------------------------- /Review/Theory/Sort.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Theory/Sort.tex -------------------------------------------------------------------------------- /Review/Theory/Theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Theory/Theory.tex -------------------------------------------------------------------------------- /Review/Tree/CBD.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/CBD.tex -------------------------------------------------------------------------------- /Review/Tree/Diameter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/Diameter.tex -------------------------------------------------------------------------------- /Review/Tree/DsuOnTree.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/DsuOnTree.tex -------------------------------------------------------------------------------- /Review/Tree/LCA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/LCA.tex -------------------------------------------------------------------------------- /Review/Tree/PBD.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/PBD.tex -------------------------------------------------------------------------------- /Review/Tree/Purfer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/Purfer.tex -------------------------------------------------------------------------------- /Review/Tree/Tarjan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/Tarjan.cpp -------------------------------------------------------------------------------- /Review/Tree/Tree.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/Tree.tex -------------------------------------------------------------------------------- /Review/Tree/VirtualTree.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/Tree/VirtualTree.tex -------------------------------------------------------------------------------- /Review/charCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/charCounter.cpp -------------------------------------------------------------------------------- /Review/mypic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Review/mypic.jpg -------------------------------------------------------------------------------- /Source/2-SAT/3209.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/2-SAT/3209.cpp -------------------------------------------------------------------------------- /Source/2-SAT/bzoj2649.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/2-SAT/bzoj2649.cpp -------------------------------------------------------------------------------- /Source/2-SAT/bzoj3495.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/2-SAT/bzoj3495.cpp -------------------------------------------------------------------------------- /Source/ACM/BZOJ2780.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/ACM/BZOJ2780.cpp -------------------------------------------------------------------------------- /Source/ACM/LOJ2180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/ACM/LOJ2180.cpp -------------------------------------------------------------------------------- /Source/BBT/3721.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/BBT/3721.cpp -------------------------------------------------------------------------------- /Source/Block/2801.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/2801.cpp -------------------------------------------------------------------------------- /Source/Block/3396.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/3396.cpp -------------------------------------------------------------------------------- /Source/Block/3591.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/3591.cpp -------------------------------------------------------------------------------- /Source/Block/3645.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/3645.cpp -------------------------------------------------------------------------------- /Source/Block/4108.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/4108.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ2874.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ2874.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6277.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6277.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6278.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6278.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6279.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6279.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6280.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6281.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6281.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6282.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6282.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6283.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6283.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6284.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6284.cpp -------------------------------------------------------------------------------- /Source/Block/LOJ6285.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/LOJ6285.cpp -------------------------------------------------------------------------------- /Source/Block/bzoj2741.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Block/bzoj2741.cpp -------------------------------------------------------------------------------- /Source/CBD/CF1009F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CBD/CF1009F.cpp -------------------------------------------------------------------------------- /Source/CBD/LOJ2079.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CBD/LOJ2079.cpp -------------------------------------------------------------------------------- /Source/CBD/LOJ2558.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CBD/LOJ2558.cpp -------------------------------------------------------------------------------- /Source/CBD/LOJ2558BIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CBD/LOJ2558BIT.cpp -------------------------------------------------------------------------------- /Source/CBD/bzoj4543.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CBD/bzoj4543.cpp -------------------------------------------------------------------------------- /Source/CDQ/3206.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CDQ/3206.cpp -------------------------------------------------------------------------------- /Source/CDQ/LOJ2049.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CDQ/LOJ2049.cpp -------------------------------------------------------------------------------- /Source/CDQ/bzoj2989.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CDQ/bzoj2989.cpp -------------------------------------------------------------------------------- /Source/CG/3236.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CG/3236.cpp -------------------------------------------------------------------------------- /Source/CG/BZOJ4138.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CG/BZOJ4138.cpp -------------------------------------------------------------------------------- /Source/CG/CIRUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CG/CIRUT.cpp -------------------------------------------------------------------------------- /Source/CG/LOJ6360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CG/LOJ6360.cpp -------------------------------------------------------------------------------- /Source/CST/4630.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CST/4630.cpp -------------------------------------------------------------------------------- /Source/CST/LOJ10099.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CST/LOJ10099.cpp -------------------------------------------------------------------------------- /Source/CST/LOJ2062A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CST/LOJ2062A.cpp -------------------------------------------------------------------------------- /Source/CST/LOJ2062B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CST/LOJ2062B.cpp -------------------------------------------------------------------------------- /Source/CST/LOJ2562.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CST/LOJ2562.cpp -------------------------------------------------------------------------------- /Source/CST/LOJ2587.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/CST/LOJ2587.cpp -------------------------------------------------------------------------------- /Source/Cacti/3687.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Cacti/3687.cpp -------------------------------------------------------------------------------- /Source/Cacti/4244.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Cacti/4244.cpp -------------------------------------------------------------------------------- /Source/Cacti/4630.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/ChordAndMCS/3196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/ChordAndMCS/3196.cpp -------------------------------------------------------------------------------- /Source/Count/2532.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/2532.cpp -------------------------------------------------------------------------------- /Source/Count/3200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/3200.cpp -------------------------------------------------------------------------------- /Source/Count/3200CRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/3200CRT.cpp -------------------------------------------------------------------------------- /Source/Count/3757.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/3757.cpp -------------------------------------------------------------------------------- /Source/Count/4187.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/4187.cpp -------------------------------------------------------------------------------- /Source/Count/4678.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/4678.cpp -------------------------------------------------------------------------------- /Source/Count/CF348D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/CF348D.cpp -------------------------------------------------------------------------------- /Source/Count/LOJ2027.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/LOJ2027.cpp -------------------------------------------------------------------------------- /Source/Count/LOJ547.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/LOJ547.cpp -------------------------------------------------------------------------------- /Source/Count/LOJ6358.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/LOJ6358.cpp -------------------------------------------------------------------------------- /Source/Count/SP9507.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/SP9507.cpp -------------------------------------------------------------------------------- /Source/Count/bzoj2111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/bzoj2111.cpp -------------------------------------------------------------------------------- /Source/Count/bzoj3198.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/bzoj3198.cpp -------------------------------------------------------------------------------- /Source/Count/bzoj3501.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Count/bzoj3501.cpp -------------------------------------------------------------------------------- /Source/DDP/4513.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DDP/4513.cpp -------------------------------------------------------------------------------- /Source/DDP/LOJ2269.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DDP/LOJ2269.cpp -------------------------------------------------------------------------------- /Source/DDP/LOJ2955.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DDP/LOJ2955.cpp -------------------------------------------------------------------------------- /Source/DDP/bzoj4712.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DDP/bzoj4712.cpp -------------------------------------------------------------------------------- /Source/DP/1912.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/1912.cpp -------------------------------------------------------------------------------- /Source/DP/2254.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/2254.cpp -------------------------------------------------------------------------------- /Source/DP/2317.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/2317.cpp -------------------------------------------------------------------------------- /Source/DP/2900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/2900.cpp -------------------------------------------------------------------------------- /Source/DP/3503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/3503.cpp -------------------------------------------------------------------------------- /Source/DP/3572.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/3572.cpp -------------------------------------------------------------------------------- /Source/DP/3594.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/3594.cpp -------------------------------------------------------------------------------- /Source/DP/3594G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/3594G.cpp -------------------------------------------------------------------------------- /Source/DP/4104.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/4104.cpp -------------------------------------------------------------------------------- /Source/DP/4127.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/4127.cpp -------------------------------------------------------------------------------- /Source/DP/4577.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/4577.cpp -------------------------------------------------------------------------------- /Source/DP/4767.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/4767.cpp -------------------------------------------------------------------------------- /Source/DP/4769.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/4769.cpp -------------------------------------------------------------------------------- /Source/DP/4769test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/4769test.cpp -------------------------------------------------------------------------------- /Source/DP/CF691E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/CF691E.cpp -------------------------------------------------------------------------------- /Source/DP/CF868F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/CF868F.cpp -------------------------------------------------------------------------------- /Source/DP/HDU5956.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/HDU5956.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ10188.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ10188.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ10190.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ10190.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ10192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ10192.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2074.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2074.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2110.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2124.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2157.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2157B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2157B.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2249.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2249.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2353.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2353.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2356.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2356.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2481.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2481.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2483DC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2483DC.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2483RBHPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2483RBHPI.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ2688.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ2688.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ535.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ535.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ6039.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ6039.cpp -------------------------------------------------------------------------------- /Source/DP/LOJ6081.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/LOJ6081.cpp -------------------------------------------------------------------------------- /Source/DP/P3994.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/P3994.cpp -------------------------------------------------------------------------------- /Source/DP/bzoj2096.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/bzoj2096.cpp -------------------------------------------------------------------------------- /Source/DP/bzoj2739.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/bzoj2739.cpp -------------------------------------------------------------------------------- /Source/DP/bzoj3583.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/bzoj3583.cpp -------------------------------------------------------------------------------- /Source/DP/bzoj3675nklg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/bzoj3675nklg.cpp -------------------------------------------------------------------------------- /Source/DP/bzoj4709.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/bzoj4709.cpp -------------------------------------------------------------------------------- /Source/DP/bzoj5311TLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DP/bzoj5311TLE.cpp -------------------------------------------------------------------------------- /Source/DSU/BZOJ3712.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DSU/BZOJ3712.cpp -------------------------------------------------------------------------------- /Source/Divide/bzoj3110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Divide/bzoj3110.cpp -------------------------------------------------------------------------------- /Source/DsuOnTree/CF570D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DsuOnTree/CF570D.cpp -------------------------------------------------------------------------------- /Source/DsuOnTree/CF741D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/DsuOnTree/CF741D.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/3321.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/3321.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/3338.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/3338.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/3723.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/3723.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4238.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4238.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4239.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4239.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4245.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4245.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4491.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4491.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4512.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4721.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4721.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4725.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4725.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/4726.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/4726.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/5205.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/5205.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/BZOJ3160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/BZOJ3160.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/BZOJ4259.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/BZOJ4259.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/BZOJ4503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/BZOJ4503.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/CF528D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/CF528D.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/CF553E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/CF553E.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/CF623E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/CF623E.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/CF662C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/CF662C.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/CF923E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/CF923E.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ150.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ151.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ2020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ2020.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ2058.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ2058.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ2183.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ2183.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ2527.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ2527.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ2541.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ2541.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ556.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ556.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ556X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ556X.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ6261.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ6261.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ6388.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ6388.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/LOJ6503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/LOJ6503.cpp -------------------------------------------------------------------------------- /Source/FFT NTT/P4191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FFT NTT/P4191.cpp -------------------------------------------------------------------------------- /Source/FHQTreap/2596.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/2596.cpp -------------------------------------------------------------------------------- /Source/FHQTreap/3165.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/3165.cpp -------------------------------------------------------------------------------- /Source/FHQTreap/3278.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/3278.cpp -------------------------------------------------------------------------------- /Source/FHQTreap/3285.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/3285.cpp -------------------------------------------------------------------------------- /Source/FHQTreap/3285.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/3285.txt -------------------------------------------------------------------------------- /Source/FHQTreap/3285gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/3285gen.cpp -------------------------------------------------------------------------------- /Source/FHQTreap/3835.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/3835.cpp -------------------------------------------------------------------------------- /Source/FHQTreap/LOJ516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FHQTreap/LOJ516.cpp -------------------------------------------------------------------------------- /Source/FWT FMT/CF850E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FWT FMT/CF850E.cpp -------------------------------------------------------------------------------- /Source/FWT FMT/LOJ152.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FWT FMT/LOJ152.cpp -------------------------------------------------------------------------------- /Source/FWT FMT/LOJ153.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FWT FMT/LOJ153.cpp -------------------------------------------------------------------------------- /Source/FWT FMT/LOJ570.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/FWT FMT/LOJ570.cpp -------------------------------------------------------------------------------- /Source/Game Theory/2197.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/2197.cpp -------------------------------------------------------------------------------- /Source/Game Theory/2252.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/2252.cpp -------------------------------------------------------------------------------- /Source/Game Theory/2575.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/2575.cpp -------------------------------------------------------------------------------- /Source/Game Theory/2964.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/2964.cpp -------------------------------------------------------------------------------- /Source/Game Theory/3185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/3185.cpp -------------------------------------------------------------------------------- /Source/Game Theory/3235.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/3235.cpp -------------------------------------------------------------------------------- /Source/Game Theory/3480.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/3480.cpp -------------------------------------------------------------------------------- /Source/Game Theory/4279.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Game Theory/4279.cpp -------------------------------------------------------------------------------- /Source/Greed/2570.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Greed/2570.cpp -------------------------------------------------------------------------------- /Source/Greed/BZOJ1398.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Greed/BZOJ1398.cpp -------------------------------------------------------------------------------- /Source/Greed/LOJ6254.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Greed/LOJ6254.cpp -------------------------------------------------------------------------------- /Source/Greed/UOJ455WA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Greed/UOJ455WA.cpp -------------------------------------------------------------------------------- /Source/Greed/bzoj2288.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Greed/bzoj2288.cpp -------------------------------------------------------------------------------- /Source/Groop/4727.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Groop/4727.cpp -------------------------------------------------------------------------------- /Source/Groop/UVA10601.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Groop/UVA10601.cpp -------------------------------------------------------------------------------- /Source/Groop/UVA10601X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Groop/UVA10601X.cpp -------------------------------------------------------------------------------- /Source/Groop/UVA11255.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Groop/UVA11255.cpp -------------------------------------------------------------------------------- /Source/HPI/2600.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/HPI/2600.cpp -------------------------------------------------------------------------------- /Source/HPI/3256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/HPI/3256.cpp -------------------------------------------------------------------------------- /Source/HPI/3297.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/HPI/3297.cpp -------------------------------------------------------------------------------- /Source/HPI/4196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/HPI/4196.cpp -------------------------------------------------------------------------------- /Source/HPI/bzoj2961.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/HPI/bzoj2961.cpp -------------------------------------------------------------------------------- /Source/Hash/bzoj3084TLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Hash/bzoj3084TLE.cpp -------------------------------------------------------------------------------- /Source/K-d Tree/1648.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/K-d Tree/1648.cpp -------------------------------------------------------------------------------- /Source/K-d Tree/2093.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/K-d Tree/2093.cpp -------------------------------------------------------------------------------- /Source/K-d Tree/3769WA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/K-d Tree/3769WA.cpp -------------------------------------------------------------------------------- /Source/K-d Tree/4148.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/K-d Tree/4148.cpp -------------------------------------------------------------------------------- /Source/K-d Tree/4169.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/K-d Tree/4169.cpp -------------------------------------------------------------------------------- /Source/K-d Tree/4793.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/K-d Tree/4793.cpp -------------------------------------------------------------------------------- /Source/K-d Tree/4793gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/K-d Tree/4793gen.cpp -------------------------------------------------------------------------------- /Source/KMP/3193.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/KMP/3193.cpp -------------------------------------------------------------------------------- /Source/KMP/LOJ2272.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/KMP/LOJ2272.cpp -------------------------------------------------------------------------------- /Source/LCT/1501.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/1501.cpp -------------------------------------------------------------------------------- /Source/LCT/2173.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/2173.cpp -------------------------------------------------------------------------------- /Source/LCT/2387.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/2387.cpp -------------------------------------------------------------------------------- /Source/LCT/3703.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/3703.cpp -------------------------------------------------------------------------------- /Source/LCT/4121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/4121.cpp -------------------------------------------------------------------------------- /Source/LCT/4172.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/4172.cpp -------------------------------------------------------------------------------- /Source/LCT/4234.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/4234.cpp -------------------------------------------------------------------------------- /Source/LCT/4299A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/4299A.cpp -------------------------------------------------------------------------------- /Source/LCT/4299AX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/4299AX.cpp -------------------------------------------------------------------------------- /Source/LCT/4299B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/4299B.cpp -------------------------------------------------------------------------------- /Source/LCT/LOJ2001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/LOJ2001.cpp -------------------------------------------------------------------------------- /Source/LCT/LOJ2230.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/LOJ2230.cpp -------------------------------------------------------------------------------- /Source/LCT/LOJ2245.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/LOJ2245.cpp -------------------------------------------------------------------------------- /Source/LCT/LOJ2289.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/LOJ2289.cpp -------------------------------------------------------------------------------- /Source/LCT/LOJ2497.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/LOJ2497.cpp -------------------------------------------------------------------------------- /Source/LCT/LOJ558.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/LOJ558.cpp -------------------------------------------------------------------------------- /Source/LCT/LOJ6038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/LOJ6038.cpp -------------------------------------------------------------------------------- /Source/LCT/QTREE5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/QTREE5.cpp -------------------------------------------------------------------------------- /Source/LCT/QTREE6A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/QTREE6A.cpp -------------------------------------------------------------------------------- /Source/LCT/QTREE6B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/QTREE6B.cpp -------------------------------------------------------------------------------- /Source/LCT/QTREE7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/QTREE7.cpp -------------------------------------------------------------------------------- /Source/LCT/SP8791.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/SP8791.cpp -------------------------------------------------------------------------------- /Source/LCT/UOJ207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/UOJ207.cpp -------------------------------------------------------------------------------- /Source/LCT/bzoj3514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LCT/bzoj3514.cpp -------------------------------------------------------------------------------- /Source/LinearBasis/3857.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LinearBasis/3857.cpp -------------------------------------------------------------------------------- /Source/LinearBasis/4570.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/LinearBasis/4570.cpp -------------------------------------------------------------------------------- /Source/Link/3190.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Link/3190.cpp -------------------------------------------------------------------------------- /Source/Link/3886.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Link/3886.cpp -------------------------------------------------------------------------------- /Source/Link/5056.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Link/5056.cpp -------------------------------------------------------------------------------- /Source/Link/bzoj2310.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Link/bzoj2310.cpp -------------------------------------------------------------------------------- /Source/Matrix/LOJ10025.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/LOJ10025.cpp -------------------------------------------------------------------------------- /Source/Matrix/LOJ2106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/LOJ2106.cpp -------------------------------------------------------------------------------- /Source/Matrix/P3216.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/P3216.cpp -------------------------------------------------------------------------------- /Source/Matrix/P5107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/P5107.cpp -------------------------------------------------------------------------------- /Source/Matrix/P5107B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/P5107B.cpp -------------------------------------------------------------------------------- /Source/Matrix/P5110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/P5110.cpp -------------------------------------------------------------------------------- /Source/Matrix/P5110B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/P5110B.cpp -------------------------------------------------------------------------------- /Source/Matrix/P5110Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/P5110Test.cpp -------------------------------------------------------------------------------- /Source/Matrix/bzoj4128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Matrix/bzoj4128.cpp -------------------------------------------------------------------------------- /Source/MinMax/LOJ2127.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/MinMax/LOJ2127.cpp -------------------------------------------------------------------------------- /Source/MinMax/LOJ2542.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/MinMax/LOJ2542.cpp -------------------------------------------------------------------------------- /Source/Mobius/2257.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Mobius/2257.cpp -------------------------------------------------------------------------------- /Source/Mobius/3455.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Mobius/3455.cpp -------------------------------------------------------------------------------- /Source/Mobius/4318.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Mobius/4318.cpp -------------------------------------------------------------------------------- /Source/Mobius/LOJ2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Mobius/LOJ2000.cpp -------------------------------------------------------------------------------- /Source/Mobius/LOJ2095.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Mobius/LOJ2095.cpp -------------------------------------------------------------------------------- /Source/Mobius/LOJ2565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Mobius/LOJ2565.cpp -------------------------------------------------------------------------------- /Source/Mobius/LOJ528.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Mobius/LOJ528.cpp -------------------------------------------------------------------------------- /Source/Optmize/3980.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Optmize/3980.cpp -------------------------------------------------------------------------------- /Source/Optmize/LOJ2671.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Optmize/LOJ2671.cpp -------------------------------------------------------------------------------- /Source/Optmize/bzoj2428.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Optmize/bzoj2428.cpp -------------------------------------------------------------------------------- /Source/Optmize/bzoj3550.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Optmize/bzoj3550.cpp -------------------------------------------------------------------------------- /Source/Optmize/bzoj3680.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Optmize/bzoj3680.cpp -------------------------------------------------------------------------------- /Source/Other/CF1060H.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Other/CF1060H.cpp -------------------------------------------------------------------------------- /Source/PAM/BZOJ2565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/PAM/BZOJ2565.cpp -------------------------------------------------------------------------------- /Source/PAM/SPOJNUMOFVAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/PAM/SPOJNUMOFVAL.cpp -------------------------------------------------------------------------------- /Source/Partition/LOJ534.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Partition/LOJ534.cpp -------------------------------------------------------------------------------- /Source/Partition/P4755.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Partition/P4755.cpp -------------------------------------------------------------------------------- /Source/Probability/1297.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Probability/1297.cpp -------------------------------------------------------------------------------- /Source/Probability/3211.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Probability/3211.cpp -------------------------------------------------------------------------------- /Source/Probability/3600.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Probability/3600.cpp -------------------------------------------------------------------------------- /Source/Queue/2698.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Queue/2698.cpp -------------------------------------------------------------------------------- /Source/SA/LOJ111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SA/LOJ111.cpp -------------------------------------------------------------------------------- /Source/SA/LOJ2059.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SA/LOJ2059.cpp -------------------------------------------------------------------------------- /Source/SA/LOJ2133.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SA/LOJ2133.cpp -------------------------------------------------------------------------------- /Source/SA/LOJ2525.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SA/LOJ2525.cpp -------------------------------------------------------------------------------- /Source/SA/SP1811.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SA/SP1811.cpp -------------------------------------------------------------------------------- /Source/SA/bzoj4453.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SA/bzoj4453.cpp -------------------------------------------------------------------------------- /Source/SAM/1117.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/1117.cpp -------------------------------------------------------------------------------- /Source/SAM/1368.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/1368.cpp -------------------------------------------------------------------------------- /Source/SAM/2178.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/2178.cpp -------------------------------------------------------------------------------- /Source/SAM/2463.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/2463.cpp -------------------------------------------------------------------------------- /Source/SAM/2852.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/2852.cpp -------------------------------------------------------------------------------- /Source/SAM/3181.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/3181.cpp -------------------------------------------------------------------------------- /Source/SAM/3346.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/3346.cpp -------------------------------------------------------------------------------- /Source/SAM/3763.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/3763.cpp -------------------------------------------------------------------------------- /Source/SAM/3975.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/3975.cpp -------------------------------------------------------------------------------- /Source/SAM/4022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/4022.cpp -------------------------------------------------------------------------------- /Source/SAM/4070.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/4070.cpp -------------------------------------------------------------------------------- /Source/SAM/4081.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/4081.cpp -------------------------------------------------------------------------------- /Source/SAM/4094.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/4094.cpp -------------------------------------------------------------------------------- /Source/SAM/4248.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/4248.cpp -------------------------------------------------------------------------------- /Source/SAM/4770.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/4770.cpp -------------------------------------------------------------------------------- /Source/SAM/BZOJ2780.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/BZOJ2780.cpp -------------------------------------------------------------------------------- /Source/SAM/BZOJ3277.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/BZOJ3277.cpp -------------------------------------------------------------------------------- /Source/SAM/CF235C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/CF235C.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2033.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2033.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2059.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2059.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2064.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2064.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2064X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2064X.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2172.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2172.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2377.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2377.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2720lg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2720lg.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ2720sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ2720sqrt.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ6031.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ6031.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ6041.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ6041.cpp -------------------------------------------------------------------------------- /Source/SAM/LOJ6198.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/LOJ6198.cpp -------------------------------------------------------------------------------- /Source/SAM/SP8222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/SP8222.cpp -------------------------------------------------------------------------------- /Source/SAM/bzoj2555.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/bzoj2555.cpp -------------------------------------------------------------------------------- /Source/SAM/bzoj4545.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SAM/bzoj4545.cpp -------------------------------------------------------------------------------- /Source/Search/2324.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Search/2324.cpp -------------------------------------------------------------------------------- /Source/Search/LOJ10022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Search/LOJ10022.cpp -------------------------------------------------------------------------------- /Source/SegmentTree/4097.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SegmentTree/4097.cpp -------------------------------------------------------------------------------- /Source/SegmentTree/4198.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SegmentTree/4198.cpp -------------------------------------------------------------------------------- /Source/SegmentTree/4254.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SegmentTree/4254.cpp -------------------------------------------------------------------------------- /Source/SegmentTree/4556.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SegmentTree/4556.cpp -------------------------------------------------------------------------------- /Source/SegmentTree/4587.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SegmentTree/4587.cpp -------------------------------------------------------------------------------- /Source/SegmentTree/5025.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/SegmentTree/5025.cpp -------------------------------------------------------------------------------- /Source/Sieve/1829.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/1829.cpp -------------------------------------------------------------------------------- /Source/Sieve/DIVCNT2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/DIVCNT2.cpp -------------------------------------------------------------------------------- /Source/Sieve/DIVCNT3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/DIVCNT3.cpp -------------------------------------------------------------------------------- /Source/Sieve/DIVCNTK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/DIVCNTK.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ124A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ124A.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ124B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ124B.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ125.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ2085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ2085.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ509Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ509Test.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ6027.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ6027.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ6028.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ6028.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ6229.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ6229.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ6235.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ6235.cpp -------------------------------------------------------------------------------- /Source/Sieve/LOJ6491.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Sieve/LOJ6491.cpp -------------------------------------------------------------------------------- /Source/Splay/LOJ516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Splay/LOJ516.cpp -------------------------------------------------------------------------------- /Source/Swap/3207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Swap/3207.cpp -------------------------------------------------------------------------------- /Source/Swap/4128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Swap/4128.cpp -------------------------------------------------------------------------------- /Source/TopSort/3573.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TopSort/3573.cpp -------------------------------------------------------------------------------- /Source/TopSort/CF915D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TopSort/CF915D.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/1527.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/1527.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/2617.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/2617.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/3242.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/3242.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/3248.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/3248.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/3380.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/3380.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/3759.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/3759.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/4093.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/4093.cpp -------------------------------------------------------------------------------- /Source/TreeOfTree/4728.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/TreeOfTree/4728.cpp -------------------------------------------------------------------------------- /Source/Trie/3449.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Trie/3449.cpp -------------------------------------------------------------------------------- /Source/Trie/3732.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Trie/3732.cpp -------------------------------------------------------------------------------- /Source/Trie/4098.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Trie/4098.cpp -------------------------------------------------------------------------------- /Source/Trie/4592.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Trie/4592.cpp -------------------------------------------------------------------------------- /Source/Trie/4735.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/Trie/4735.cpp -------------------------------------------------------------------------------- /Source/WQS/2619.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/WQS/2619.cpp -------------------------------------------------------------------------------- /Source/WQS/CF321E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/WQS/CF321E.cpp -------------------------------------------------------------------------------- /Source/WQS/CF739E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/WQS/CF739E.cpp -------------------------------------------------------------------------------- /Source/WQS/LOJ2478.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/WQS/LOJ2478.cpp -------------------------------------------------------------------------------- /Source/WQS/bzoj3675nlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/WQS/bzoj3675nlg.cpp -------------------------------------------------------------------------------- /Source/WQS/bzoj4367.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/WQS/bzoj4367.cpp -------------------------------------------------------------------------------- /Source/WQS/bzoj5311.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/WQS/bzoj5311.cpp -------------------------------------------------------------------------------- /Source/ZAlgorithm/P3893.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Source/ZAlgorithm/P3893.cpp -------------------------------------------------------------------------------- /TemplateList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/TemplateList.md -------------------------------------------------------------------------------- /Templates/2-SAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/2-SAT.cpp -------------------------------------------------------------------------------- /Templates/ACM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/ACM.cpp -------------------------------------------------------------------------------- /Templates/AGM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/AGM.cpp -------------------------------------------------------------------------------- /Templates/BSGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/BSGS.cpp -------------------------------------------------------------------------------- /Templates/BailliePSW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/BailliePSW.cpp -------------------------------------------------------------------------------- /Templates/Blossom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Blossom.cpp -------------------------------------------------------------------------------- /Templates/Boruvka.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Boruvka.cpp -------------------------------------------------------------------------------- /Templates/CDQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/CDQ.cpp -------------------------------------------------------------------------------- /Templates/CIRU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/CIRU.cpp -------------------------------------------------------------------------------- /Templates/CST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/CST.cpp -------------------------------------------------------------------------------- /Templates/Catalan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Catalan.cpp -------------------------------------------------------------------------------- /Templates/Cover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Cover.cpp -------------------------------------------------------------------------------- /Templates/DLX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/DLX.cpp -------------------------------------------------------------------------------- /Templates/DinicA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/DinicA.cpp -------------------------------------------------------------------------------- /Templates/DinicB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/DinicB.cpp -------------------------------------------------------------------------------- /Templates/DinicC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/DinicC.cpp -------------------------------------------------------------------------------- /Templates/DsuOnTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/DsuOnTree.cpp -------------------------------------------------------------------------------- /Templates/EXCRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/EXCRT.cpp -------------------------------------------------------------------------------- /Templates/Euclidlike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Euclidlike.cpp -------------------------------------------------------------------------------- /Templates/Evaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Evaluator.cpp -------------------------------------------------------------------------------- /Templates/FDSU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/FDSU.cpp -------------------------------------------------------------------------------- /Templates/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/FFT.cpp -------------------------------------------------------------------------------- /Templates/FMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/FMT.cpp -------------------------------------------------------------------------------- /Templates/FWT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/FWT.cpp -------------------------------------------------------------------------------- /Templates/GBT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/GBT.cpp -------------------------------------------------------------------------------- /Templates/GHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/GHT.cpp -------------------------------------------------------------------------------- /Templates/HLPPA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/HLPPA.cpp -------------------------------------------------------------------------------- /Templates/HLPPB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/HLPPB.cpp -------------------------------------------------------------------------------- /Templates/HPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/HPI.cpp -------------------------------------------------------------------------------- /Templates/Hall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Hall.cpp -------------------------------------------------------------------------------- /Templates/ISAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/ISAP.cpp -------------------------------------------------------------------------------- /Templates/InvMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/InvMat.cpp -------------------------------------------------------------------------------- /Templates/KMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/KMP.cpp -------------------------------------------------------------------------------- /Templates/LCT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/LCT.cpp -------------------------------------------------------------------------------- /Templates/LR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/LR.cpp -------------------------------------------------------------------------------- /Templates/LUP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/LUP.cpp -------------------------------------------------------------------------------- /Templates/Lagrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Lagrange.cpp -------------------------------------------------------------------------------- /Templates/Leftist Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Leftist Tree.cpp -------------------------------------------------------------------------------- /Templates/Link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Link.cpp -------------------------------------------------------------------------------- /Templates/MCMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/MCMF.cpp -------------------------------------------------------------------------------- /Templates/MCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/MCS.cpp -------------------------------------------------------------------------------- /Templates/NOSPFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/NOSPFA.cpp -------------------------------------------------------------------------------- /Templates/NTT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/NTT.cpp -------------------------------------------------------------------------------- /Templates/Nearest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Nearest.cpp -------------------------------------------------------------------------------- /Templates/NegRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/NegRing.cpp -------------------------------------------------------------------------------- /Templates/PAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/PAM.cpp -------------------------------------------------------------------------------- /Templates/PBD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/PBD.cpp -------------------------------------------------------------------------------- /Templates/PairingHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/PairingHeap.cpp -------------------------------------------------------------------------------- /Templates/PhiMuSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/PhiMuSum.cpp -------------------------------------------------------------------------------- /Templates/PohligHellman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/PohligHellman.cpp -------------------------------------------------------------------------------- /Templates/PollardRhoDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/PollardRhoDL.cpp -------------------------------------------------------------------------------- /Templates/QuickHull2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/QuickHull2D.cpp -------------------------------------------------------------------------------- /Templates/QuickHull3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/QuickHull3D.cpp -------------------------------------------------------------------------------- /Templates/Rotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Rotate.cpp -------------------------------------------------------------------------------- /Templates/SA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/SA.cpp -------------------------------------------------------------------------------- /Templates/SAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/SAM.cpp -------------------------------------------------------------------------------- /Templates/SAM2SA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/SAM2SA.cpp -------------------------------------------------------------------------------- /Templates/SSKTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/SSKTP.cpp -------------------------------------------------------------------------------- /Templates/SimplexSLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/SimplexSLP.cpp -------------------------------------------------------------------------------- /Templates/Splay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Splay.cpp -------------------------------------------------------------------------------- /Templates/Stoer-Wagner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Stoer-Wagner.cpp -------------------------------------------------------------------------------- /Templates/TDDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/TDDP.cpp -------------------------------------------------------------------------------- /Templates/TMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/TMD.cpp -------------------------------------------------------------------------------- /Templates/Taylor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/Taylor.cpp -------------------------------------------------------------------------------- /Templates/TreeDivide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/TreeDivide.cpp -------------------------------------------------------------------------------- /Templates/TreeHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/TreeHash.cpp -------------------------------------------------------------------------------- /Templates/UOJ179.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/UOJ179.py -------------------------------------------------------------------------------- /Templates/VirtualTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/VirtualTree.cpp -------------------------------------------------------------------------------- /Templates/ZAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/ZAlgorithm.cpp -------------------------------------------------------------------------------- /Templates/exBSGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/exBSGS.cpp -------------------------------------------------------------------------------- /Templates/fhqtreap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/fhqtreap.cpp -------------------------------------------------------------------------------- /Templates/min_25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Templates/min_25.cpp -------------------------------------------------------------------------------- /Test/AGMTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/AGMTest.cpp -------------------------------------------------------------------------------- /Test/ArgTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/ArgTest.cpp -------------------------------------------------------------------------------- /Test/BitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/BitTest.cpp -------------------------------------------------------------------------------- /Test/LOJ118.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/LOJ118.cpp -------------------------------------------------------------------------------- /Test/LocaleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/LocaleTest.cpp -------------------------------------------------------------------------------- /Test/MulTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/MulTest.cpp -------------------------------------------------------------------------------- /Test/PreDivTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/PreDivTest.cpp -------------------------------------------------------------------------------- /Test/RegexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/RegexTest.cpp -------------------------------------------------------------------------------- /Test/SieveTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/SieveTest.cpp -------------------------------------------------------------------------------- /Test/StatusError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/StatusError.cpp -------------------------------------------------------------------------------- /Test/strtodTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Test/strtodTest.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1004.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1005.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1006.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1024.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1027.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1027.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1041.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1041.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1049.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1049.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1054.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1054.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1057.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1057.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1064.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1064.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1070.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1070.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1072.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1072.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1073.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1073.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1076.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1076.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1077.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1077.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1078.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1078.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1108.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1108.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1110.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1111.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1113.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1114.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1119.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1119.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1120.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1122.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1128.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1129.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1129.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1131.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1131.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1134.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1134.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1137.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1137.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1144.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1155.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1156.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1156.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1158.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1158.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1159.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1159.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1169.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1169.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1171.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1171.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1175.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1175.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1176.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1176.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1182.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1182.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1183.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1183.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1186.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1186.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1191.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1194.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1194.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1195.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1195.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1196.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1197.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1197.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1220.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1224.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1231.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1232.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1251.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1251.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1260.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1262.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1262.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1265.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1265.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1266.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1266.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1273.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1273.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1282.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1282.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1284.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1284.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1295.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1295.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1297.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1297.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1309.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1309.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1323.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1323.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1333.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1333.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1336.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1336.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1337.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1337.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1339.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1339.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1342.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1342.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1343.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1343.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1344.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1344.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1346.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1346.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1352.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1352.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1354.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1354.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1355.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1355.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1356.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1356.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1377.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1377.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1390.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1390.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1392.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1392.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1394.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1394.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1396.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1396.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1397.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1397.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1401.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1402.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1402.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1407.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1407.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1412.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1412.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1414.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1414.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1417.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1417.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1419.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1419.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1430.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1430.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1437.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1437.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1440.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1440.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1445.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1445.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1446.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1446.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1447.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1447.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1450.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1450.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1462.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1462.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1463.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1463.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1466.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1466.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1472.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1472.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1483.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1483.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1486.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1486.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1491.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1491.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1494.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1494.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1499.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1499.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1502.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1503.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1511.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1511.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1513.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1513.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1514.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1516.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1525.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1525.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1529.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1529.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1530.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1530.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1537.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1537.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1542.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1542.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1546.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1546.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1550.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1550.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1552.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1552.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1559.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1559.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1564.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1564.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1565.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1576.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1576.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1592.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1592.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1602.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1602.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1608.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1608.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1613.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1613.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1621.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1621.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1625.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1625.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1630.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1630.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1631.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1631.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1637.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1637.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1638.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1638.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1640.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1640.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1641.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1641.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1645.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1645.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1650.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1650.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1653.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1653.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1656.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1656.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1659.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1659.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1712.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1712.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1714.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1714.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1715.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1715.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1730.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1730.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1737.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1737.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1748.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1748.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1767.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1767.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1769.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1769.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1772.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1772.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1773.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1773.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1776.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1776.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1782.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1782.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1783.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1783.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1801.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1801.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1835.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1835.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1840.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1840.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1841.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1841.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1842.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1842.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1852.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1852.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1854.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1854.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1856.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1856.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1873.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1873.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1875.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1875.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1878.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1878.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1879.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1879.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1880.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1880.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1890.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1890.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1892.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1892.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1896.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1896.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1901.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1901.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1903.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1903.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1938.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1938.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1948.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1948.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1954.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1954.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1971.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1971.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1973.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1973.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1975.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1975.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1975.cpp~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/Done/1982.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1982.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1983.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1983.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1991.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1991.cpp -------------------------------------------------------------------------------- /Unclassified/Done/1995.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/1995.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2002.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2003.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2015.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2016.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2024.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2032.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2034.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2034.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2042.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2042.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2044.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2044.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2047.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2047.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2048.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2048.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2050.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2052.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2052.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2053.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2053.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2054.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2054.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2055.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2055.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2059.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2059.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2060.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2060.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2061.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2061.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2062.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2062.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2065.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2065.cpp -------------------------------------------------------------------------------- /Unclassified/Done/20652.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/20652.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2070.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2070.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2071.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2071.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2082.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2082.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2085.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2086.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2086.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2094.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2094.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2107.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2109.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2109.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2114.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2115.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2144.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2146.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2146.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2147.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2148.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2148.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2149.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2149.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2151.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2153.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2153.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2154.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2155.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2157.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2170.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2170.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2176.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2176.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2183.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2183.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2184.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2184.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2205.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2205.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2207.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2212.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2212.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2214.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2214.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2215.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2215.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2216.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2216.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2219.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2219.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2220.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2221.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2221.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2246.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2246.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2247.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2247.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2253.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2253.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2255.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2255.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2260.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2261.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2261.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2279.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2279.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2285.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2285.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2286.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2286.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2290.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2290.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2292.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2292.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2294.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2294.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2303.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2303.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2305.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2318.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2318.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2320.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2320.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2323.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2323.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2327.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2327.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2336.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2336.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2338.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2338.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2341.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2342.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2342.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2344.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2344.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2345.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2345.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2350.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2354.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2354.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2357.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2357.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2358.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2358.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2359.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2359.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2367.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2367.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2388.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2388.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2391.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2391.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2394.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2394.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2397.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2397.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2398.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2398.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2401.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2402.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2402.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2403.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2403.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2412.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2412.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2414.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2414.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2417.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2417.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2420.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2420.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2422.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2422.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2446.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2446.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2448.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2448.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2461.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2461.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2464.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2464.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2467.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2467.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2468.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2468.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2469.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2469.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2470.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2470.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2471.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2471.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2472.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2472.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2473.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2473.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2474.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2474.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2475.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2475.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2476.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2476.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2480.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2480.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2483.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2483.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2484.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2484.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2485.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2485.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2486.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2486.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2487.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2487.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2489.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2489.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2490.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2490.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2491.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2491.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2495.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2495.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2498.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2498.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2501.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2501.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2502.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2503.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2505.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2505.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2508.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2508.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2509.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2511.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2511.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2512.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2513.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2513.cpp -------------------------------------------------------------------------------- /Unclassified/Done/25132.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/25132.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2515.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2515.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2518.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2518.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2519.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2519.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2520.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2520.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2521.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2521.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2522.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2522.cpp -------------------------------------------------------------------------------- /Unclassified/Done/25222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/25222.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2555.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2555.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2564.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2564.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2567.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2567.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2568.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2568.cpp -------------------------------------------------------------------------------- /Unclassified/Done/2569.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/2569.cpp -------------------------------------------------------------------------------- /Unclassified/Done/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/FFT.cpp -------------------------------------------------------------------------------- /Unclassified/Done/LAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/LAN.cpp -------------------------------------------------------------------------------- /Unclassified/Done/SAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/SAM.cpp -------------------------------------------------------------------------------- /Unclassified/Done/TA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/TA.cpp -------------------------------------------------------------------------------- /Unclassified/Done/cow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/cow.cpp -------------------------------------------------------------------------------- /Unclassified/Done/dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/dog.cpp -------------------------------------------------------------------------------- /Unclassified/Done/fib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/fib.cpp -------------------------------------------------------------------------------- /Unclassified/Done/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/mod.cpp -------------------------------------------------------------------------------- /Unclassified/Done/mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/mul.cpp -------------------------------------------------------------------------------- /Unclassified/Done/nth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/nth.cpp -------------------------------------------------------------------------------- /Unclassified/Done/saw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/saw.cpp -------------------------------------------------------------------------------- /Unclassified/Done/seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/seq.cpp -------------------------------------------------------------------------------- /Unclassified/Done/var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/var.cpp -------------------------------------------------------------------------------- /Unclassified/Done/xor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/Done/xor.cpp -------------------------------------------------------------------------------- /Unclassified/ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/Unclassified/ToDo.txt -------------------------------------------------------------------------------- /Unclassified/ToDo/2500.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/3219.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/3689.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/3699.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/3770.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/3771C.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/3772B.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/3780.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4006E.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4175.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4191D.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4337.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4357.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4382.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4428.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4429.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4492.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4577.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4587F.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4618.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4629.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4635.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unclassified/ToDo/4643.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/keyboard.cpp -------------------------------------------------------------------------------- /keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/keyboard.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/readme.md -------------------------------------------------------------------------------- /url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtcxzyw/OI-Source/HEAD/url.txt --------------------------------------------------------------------------------