{"id":21009506,"url":"https://github.com/limitkr/ps-template","last_synced_at":"2025-06-27T15:07:16.653Z","repository":{"id":257625846,"uuid":"858845583","full_name":"limitkr/ps-template","owner":"limitkr","description":"My competitive programming templates","archived":false,"fork":false,"pushed_at":"2025-03-05T05:53:15.000Z","size":72,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-27T15:06:34.055Z","etag":null,"topics":["competitive-programming","template"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/limitkr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-09-17T16:24:05.000Z","updated_at":"2025-03-05T05:53:18.000Z","dependencies_parsed_at":"2024-09-17T20:40:58.954Z","dependency_job_id":"0c486b06-9874-44f8-8cae-2d91bcdbf6f2","html_url":"https://github.com/limitkr/ps-template","commit_stats":null,"previous_names":["limitkr/ps-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/limitkr/ps-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitkr%2Fps-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitkr%2Fps-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitkr%2Fps-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitkr%2Fps-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/limitkr","download_url":"https://codeload.github.com/limitkr/ps-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitkr%2Fps-template/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262279128,"owners_count":23286550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["competitive-programming","template"],"created_at":"2024-11-19T09:17:02.515Z","updated_at":"2025-06-27T15:07:16.617Z","avatar_url":"https://github.com/limitkr.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003ePS Template (C++)\u003c/h1\u003e\n\u003cdiv align=\"center\"\u003e\n  \u003cstrong\u003eMy Competitive Programming Templates\u003c/strong\u003e\n\u003c/div\u003e\n\n### Snippets\n\u003cdetails\u003e\n  \u003csummary\u003e__gnu_pbds helper\u003c/summary\u003e\n  \n  - [Ordered Set](https://github.com/limitkr/ps-template/blob/main/template/__gnu_pbds/ordered_set.cpp)\n  - [Trie](https://github.com/limitkr/ps-template/blob/main/template/__gnu_pbds/trie.cpp)\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003eData Structures\u003c/summary\u003e\n  \n  - [Fenwick Tree](https://github.com/limitkr/ps-template/blob/main/template/data_structures/fenwick_tree.cpp)\n  - [Fenwick Tree(Struct Ver.)](https://github.com/limitkr/ps-template/blob/main/template/data_structures/fenwick_tree(struct).cpp)\n\u003c/details\u003e\n\n### Algorithms\n\u003cdetails\u003e\n  \u003csummary\u003eMathematics\u003c/summary\u003e\n\n  - [Miller Rabin](https://github.com/limitkr/ps-template/blob/main/template/miller_rabin.cpp)\n  - [Fast Fourier Transform](https://github.com/limitkr/ps-template/blob/main/template/fft.cpp)\n  - [Pollard Rho](https://github.com/limitkr/ps-template/blob/main/template/pollard_rho.cpp)\n  - [GCD](https://github.com/limitkr/ps-template/blob/main/template/gcd.cpp)\n\u003c/details\u003e\n\n#### Not Categorized\n- [BigInt](https://github.com/limitkr/ps-template/blob/main/template/bigint.cpp)\n- [Convex Hull](https://github.com/limitkr/ps-template/blob/main/template/convex_hull.cpp)\n- [Euler Totient](https://github.com/limitkr/ps-template/blob/main/template/euler_totient.cpp)\n- [Fast Fibonacci](https://github.com/limitkr/ps-template/blob/main/template/fast_fibo.cpp)\n- [Fast Pow](https://github.com/limitkr/ps-template/blob/main/template/fast_pow.cpp)\n- [Knuth-Morris-Pratt](https://github.com/limitkr/ps-template/blob/main/template/kmp.cpp)\n- [lcp](https://github.com/limitkr/ps-template/blob/main/template/lcp.cpp)\n- [Multi Dimensional Vector](https://github.com/limitkr/ps-template/blob/main/template/multi_dimensional_vector.cpp)\n- [Segmented Sieve(v1)](https://github.com/limitkr/ps-template/blob/main/template/segmented_sieve.cpp)\n- [Segmented Sieve(v2)](https://github.com/limitkr/ps-template/blob/main/template/segmented_sieve_v2.cpp)\n- [Suffix Array](https://github.com/limitkr/ps-template/blob/main/template/suffix_array.cpp)\n- [Trie](https://github.com/limitkr/ps-template/blob/main/template/trie.cpp)\n- [Z Algorithm](https://github.com/limitkr/ps-template/blob/main/template/z.cpp)\n\n\n#### Templates\n- [AutoCp Templates](https://github.com/limitkr/ps-template/blob/main/CP_TEMPLATE_CPP.cpp)\n- [Minimal Starter](https://github.com/limitkr/ps-template/blob/main/starter_minimal.cpp)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimitkr%2Fps-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flimitkr%2Fps-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimitkr%2Fps-template/lists"}