-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcses_problems.json
More file actions
1502 lines (1502 loc) · 37.6 KB
/
cses_problems.json
File metadata and controls
1502 lines (1502 loc) · 37.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "Introductory Problems",
"problem": "Weird Algorithm",
"link": "https://cses.fi/problemset/task/1068"
},
{
"type": "Introductory Problems",
"problem": "Missing Number",
"link": "https://cses.fi/problemset/task/1083"
},
{
"type": "Introductory Problems",
"problem": "Repetitions",
"link": "https://cses.fi/problemset/task/1069"
},
{
"type": "Introductory Problems",
"problem": "Increasing Array",
"link": "https://cses.fi/problemset/task/1094"
},
{
"type": "Introductory Problems",
"problem": "Permutations",
"link": "https://cses.fi/problemset/task/1070"
},
{
"type": "Introductory Problems",
"problem": "Number Spiral",
"link": "https://cses.fi/problemset/task/1071"
},
{
"type": "Introductory Problems",
"problem": "Two Knights",
"link": "https://cses.fi/problemset/task/1072"
},
{
"type": "Introductory Problems",
"problem": "Two Sets",
"link": "https://cses.fi/problemset/task/1092"
},
{
"type": "Introductory Problems",
"problem": "Bit Strings",
"link": "https://cses.fi/problemset/task/1617"
},
{
"type": "Introductory Problems",
"problem": "Trailing Zeros",
"link": "https://cses.fi/problemset/task/1618"
},
{
"type": "Introductory Problems",
"problem": "Coin Piles",
"link": "https://cses.fi/problemset/task/1754"
},
{
"type": "Introductory Problems",
"problem": "Palindrome Reorder",
"link": "https://cses.fi/problemset/task/1755"
},
{
"type": "Introductory Problems",
"problem": "Gray Code",
"link": "https://cses.fi/problemset/task/2205"
},
{
"type": "Introductory Problems",
"problem": "Tower of Hanoi",
"link": "https://cses.fi/problemset/task/2165"
},
{
"type": "Introductory Problems",
"problem": "Creating Strings",
"link": "https://cses.fi/problemset/task/1622"
},
{
"type": "Introductory Problems",
"problem": "Apple Division",
"link": "https://cses.fi/problemset/task/1623"
},
{
"type": "Introductory Problems",
"problem": "Chessboard and Queens",
"link": "https://cses.fi/problemset/task/1624"
},
{
"type": "Introductory Problems",
"problem": "Digit Queries",
"link": "https://cses.fi/problemset/task/2431"
},
{
"type": "Introductory Problems",
"problem": "Grid Paths",
"link": "https://cses.fi/problemset/task/1625"
},
{
"type": "Sorting and Searching",
"problem": "Distinct Numbers",
"link": "https://cses.fi/problemset/task/1621"
},
{
"type": "Sorting and Searching",
"problem": "Apartments",
"link": "https://cses.fi/problemset/task/1084"
},
{
"type": "Sorting and Searching",
"problem": "Ferris Wheel",
"link": "https://cses.fi/problemset/task/1090"
},
{
"type": "Sorting and Searching",
"problem": "Concert Tickets",
"link": "https://cses.fi/problemset/task/1091"
},
{
"type": "Sorting and Searching",
"problem": "Restaurant Customers",
"link": "https://cses.fi/problemset/task/1619"
},
{
"type": "Sorting and Searching",
"problem": "Movie Festival",
"link": "https://cses.fi/problemset/task/1629"
},
{
"type": "Sorting and Searching",
"problem": "Sum of Two Values",
"link": "https://cses.fi/problemset/task/1640"
},
{
"type": "Sorting and Searching",
"problem": "Maximum Subarray Sum",
"link": "https://cses.fi/problemset/task/1643"
},
{
"type": "Sorting and Searching",
"problem": "Stick Lengths",
"link": "https://cses.fi/problemset/task/1074"
},
{
"type": "Sorting and Searching",
"problem": "Missing Coin Sum",
"link": "https://cses.fi/problemset/task/2183"
},
{
"type": "Sorting and Searching",
"problem": "Collecting Numbers",
"link": "https://cses.fi/problemset/task/2216"
},
{
"type": "Sorting and Searching",
"problem": "Collecting Numbers II",
"link": "https://cses.fi/problemset/task/2217"
},
{
"type": "Sorting and Searching",
"problem": "Playlist",
"link": "https://cses.fi/problemset/task/1141"
},
{
"type": "Sorting and Searching",
"problem": "Towers",
"link": "https://cses.fi/problemset/task/1073"
},
{
"type": "Sorting and Searching",
"problem": "Traffic Lights",
"link": "https://cses.fi/problemset/task/1163"
},
{
"type": "Sorting and Searching",
"problem": "Josephus Problem I",
"link": "https://cses.fi/problemset/task/2162"
},
{
"type": "Sorting and Searching",
"problem": "Josephus Problem II",
"link": "https://cses.fi/problemset/task/2163"
},
{
"type": "Sorting and Searching",
"problem": "Nested Ranges Check",
"link": "https://cses.fi/problemset/task/2168"
},
{
"type": "Sorting and Searching",
"problem": "Nested Ranges Count",
"link": "https://cses.fi/problemset/task/2169"
},
{
"type": "Sorting and Searching",
"problem": "Room Allocation",
"link": "https://cses.fi/problemset/task/1164"
},
{
"type": "Sorting and Searching",
"problem": "Factory Machines",
"link": "https://cses.fi/problemset/task/1620"
},
{
"type": "Sorting and Searching",
"problem": "Tasks and Deadlines",
"link": "https://cses.fi/problemset/task/1630"
},
{
"type": "Sorting and Searching",
"problem": "Reading Books",
"link": "https://cses.fi/problemset/task/1631"
},
{
"type": "Sorting and Searching",
"problem": "Sum of Three Values",
"link": "https://cses.fi/problemset/task/1641"
},
{
"type": "Sorting and Searching",
"problem": "Sum of Four Values",
"link": "https://cses.fi/problemset/task/1642"
},
{
"type": "Sorting and Searching",
"problem": "Nearest Smaller Values",
"link": "https://cses.fi/problemset/task/1645"
},
{
"type": "Sorting and Searching",
"problem": "Subarray Sums I",
"link": "https://cses.fi/problemset/task/1660"
},
{
"type": "Sorting and Searching",
"problem": "Subarray Sums II",
"link": "https://cses.fi/problemset/task/1661"
},
{
"type": "Sorting and Searching",
"problem": "Subarray Divisibility",
"link": "https://cses.fi/problemset/task/1662"
},
{
"type": "Sorting and Searching",
"problem": "Subarray Distinct Values",
"link": "https://cses.fi/problemset/task/2428"
},
{
"type": "Sorting and Searching",
"problem": "Array Division",
"link": "https://cses.fi/problemset/task/1085"
},
{
"type": "Sorting and Searching",
"problem": "Sliding Window Median",
"link": "https://cses.fi/problemset/task/1076"
},
{
"type": "Sorting and Searching",
"problem": "Sliding Window Cost",
"link": "https://cses.fi/problemset/task/1077"
},
{
"type": "Sorting and Searching",
"problem": "Movie Festival II",
"link": "https://cses.fi/problemset/task/1632"
},
{
"type": "Sorting and Searching",
"problem": "Maximum Subarray Sum II",
"link": "https://cses.fi/problemset/task/1644"
},
{
"type": "Dynamic Programming",
"problem": "Dice Combinations",
"link": "https://cses.fi/problemset/task/1633"
},
{
"type": "Dynamic Programming",
"problem": "Minimizing Coins",
"link": "https://cses.fi/problemset/task/1634"
},
{
"type": "Dynamic Programming",
"problem": "Coin Combinations I",
"link": "https://cses.fi/problemset/task/1635"
},
{
"type": "Dynamic Programming",
"problem": "Coin Combinations II",
"link": "https://cses.fi/problemset/task/1636"
},
{
"type": "Dynamic Programming",
"problem": "Removing Digits",
"link": "https://cses.fi/problemset/task/1637"
},
{
"type": "Dynamic Programming",
"problem": "Grid Paths",
"link": "https://cses.fi/problemset/task/1638"
},
{
"type": "Dynamic Programming",
"problem": "Book Shop",
"link": "https://cses.fi/problemset/task/1158"
},
{
"type": "Dynamic Programming",
"problem": "Array Description",
"link": "https://cses.fi/problemset/task/1746"
},
{
"type": "Dynamic Programming",
"problem": "Counting Towers",
"link": "https://cses.fi/problemset/task/2413"
},
{
"type": "Dynamic Programming",
"problem": "Edit Distance",
"link": "https://cses.fi/problemset/task/1639"
},
{
"type": "Dynamic Programming",
"problem": "Rectangle Cutting",
"link": "https://cses.fi/problemset/task/1744"
},
{
"type": "Dynamic Programming",
"problem": "Money Sums",
"link": "https://cses.fi/problemset/task/1745"
},
{
"type": "Dynamic Programming",
"problem": "Removal Game",
"link": "https://cses.fi/problemset/task/1097"
},
{
"type": "Dynamic Programming",
"problem": "Two Sets II",
"link": "https://cses.fi/problemset/task/1093"
},
{
"type": "Dynamic Programming",
"problem": "Increasing Subsequence",
"link": "https://cses.fi/problemset/task/1145"
},
{
"type": "Dynamic Programming",
"problem": "Projects",
"link": "https://cses.fi/problemset/task/1140"
},
{
"type": "Dynamic Programming",
"problem": "Elevator Rides",
"link": "https://cses.fi/problemset/task/1653"
},
{
"type": "Dynamic Programming",
"problem": "Counting Tilings",
"link": "https://cses.fi/problemset/task/2181"
},
{
"type": "Dynamic Programming",
"problem": "Counting Numbers",
"link": "https://cses.fi/problemset/task/2220"
},
{
"type": "Graph Algorithms",
"problem": "Counting Rooms",
"link": "https://cses.fi/problemset/task/1192"
},
{
"type": "Graph Algorithms",
"problem": "Labyrinth",
"link": "https://cses.fi/problemset/task/1193"
},
{
"type": "Graph Algorithms",
"problem": "Building Roads",
"link": "https://cses.fi/problemset/task/1666"
},
{
"type": "Graph Algorithms",
"problem": "Message Route",
"link": "https://cses.fi/problemset/task/1667"
},
{
"type": "Graph Algorithms",
"problem": "Building Teams",
"link": "https://cses.fi/problemset/task/1668"
},
{
"type": "Graph Algorithms",
"problem": "Round Trip",
"link": "https://cses.fi/problemset/task/1669"
},
{
"type": "Graph Algorithms",
"problem": "Monsters",
"link": "https://cses.fi/problemset/task/1194"
},
{
"type": "Graph Algorithms",
"problem": "Shortest Routes I",
"link": "https://cses.fi/problemset/task/1671"
},
{
"type": "Graph Algorithms",
"problem": "Shortest Routes II",
"link": "https://cses.fi/problemset/task/1672"
},
{
"type": "Graph Algorithms",
"problem": "High Score",
"link": "https://cses.fi/problemset/task/1673"
},
{
"type": "Graph Algorithms",
"problem": "Flight Discount",
"link": "https://cses.fi/problemset/task/1195"
},
{
"type": "Graph Algorithms",
"problem": "Cycle Finding",
"link": "https://cses.fi/problemset/task/1197"
},
{
"type": "Graph Algorithms",
"problem": "Flight Routes",
"link": "https://cses.fi/problemset/task/1196"
},
{
"type": "Graph Algorithms",
"problem": "Round Trip II",
"link": "https://cses.fi/problemset/task/1678"
},
{
"type": "Graph Algorithms",
"problem": "Course Schedule",
"link": "https://cses.fi/problemset/task/1679"
},
{
"type": "Graph Algorithms",
"problem": "Longest Flight Route",
"link": "https://cses.fi/problemset/task/1680"
},
{
"type": "Graph Algorithms",
"problem": "Game Routes",
"link": "https://cses.fi/problemset/task/1681"
},
{
"type": "Graph Algorithms",
"problem": "Investigation",
"link": "https://cses.fi/problemset/task/1202"
},
{
"type": "Graph Algorithms",
"problem": "Planets Queries I",
"link": "https://cses.fi/problemset/task/1750"
},
{
"type": "Graph Algorithms",
"problem": "Planets Queries II",
"link": "https://cses.fi/problemset/task/1160"
},
{
"type": "Graph Algorithms",
"problem": "Planets Cycles",
"link": "https://cses.fi/problemset/task/1751"
},
{
"type": "Graph Algorithms",
"problem": "Road Reparation",
"link": "https://cses.fi/problemset/task/1675"
},
{
"type": "Graph Algorithms",
"problem": "Road Construction",
"link": "https://cses.fi/problemset/task/1676"
},
{
"type": "Graph Algorithms",
"problem": "Flight Routes Check",
"link": "https://cses.fi/problemset/task/1682"
},
{
"type": "Graph Algorithms",
"problem": "Planets and Kingdoms",
"link": "https://cses.fi/problemset/task/1683"
},
{
"type": "Graph Algorithms",
"problem": "Giant Pizza",
"link": "https://cses.fi/problemset/task/1684"
},
{
"type": "Graph Algorithms",
"problem": "Coin Collector",
"link": "https://cses.fi/problemset/task/1686"
},
{
"type": "Graph Algorithms",
"problem": "Mail Delivery",
"link": "https://cses.fi/problemset/task/1691"
},
{
"type": "Graph Algorithms",
"problem": "De Bruijn Sequence",
"link": "https://cses.fi/problemset/task/1692"
},
{
"type": "Graph Algorithms",
"problem": "Teleporters Path",
"link": "https://cses.fi/problemset/task/1693"
},
{
"type": "Graph Algorithms",
"problem": "Hamiltonian Flights",
"link": "https://cses.fi/problemset/task/1690"
},
{
"type": "Graph Algorithms",
"problem": "Knight's Tour",
"link": "https://cses.fi/problemset/task/1689"
},
{
"type": "Graph Algorithms",
"problem": "Download Speed",
"link": "https://cses.fi/problemset/task/1694"
},
{
"type": "Graph Algorithms",
"problem": "Police Chase",
"link": "https://cses.fi/problemset/task/1695"
},
{
"type": "Graph Algorithms",
"problem": "School Dance",
"link": "https://cses.fi/problemset/task/1696"
},
{
"type": "Graph Algorithms",
"problem": "Distinct Routes",
"link": "https://cses.fi/problemset/task/1711"
},
{
"type": "Range Queries",
"problem": "Static Range Sum Queries",
"link": "https://cses.fi/problemset/task/1646"
},
{
"type": "Range Queries",
"problem": "Static Range Minimum Queries",
"link": "https://cses.fi/problemset/task/1647"
},
{
"type": "Range Queries",
"problem": "Dynamic Range Sum Queries",
"link": "https://cses.fi/problemset/task/1648"
},
{
"type": "Range Queries",
"problem": "Dynamic Range Minimum Queries",
"link": "https://cses.fi/problemset/task/1649"
},
{
"type": "Range Queries",
"problem": "Range Xor Queries",
"link": "https://cses.fi/problemset/task/1650"
},
{
"type": "Range Queries",
"problem": "Range Update Queries",
"link": "https://cses.fi/problemset/task/1651"
},
{
"type": "Range Queries",
"problem": "Forest Queries",
"link": "https://cses.fi/problemset/task/1652"
},
{
"type": "Range Queries",
"problem": "Hotel Queries",
"link": "https://cses.fi/problemset/task/1143"
},
{
"type": "Range Queries",
"problem": "List Removals",
"link": "https://cses.fi/problemset/task/1749"
},
{
"type": "Range Queries",
"problem": "Salary Queries",
"link": "https://cses.fi/problemset/task/1144"
},
{
"type": "Range Queries",
"problem": "Prefix Sum Queries",
"link": "https://cses.fi/problemset/task/2166"
},
{
"type": "Range Queries",
"problem": "Pizzeria Queries",
"link": "https://cses.fi/problemset/task/2206"
},
{
"type": "Range Queries",
"problem": "Subarray Sum Queries",
"link": "https://cses.fi/problemset/task/1190"
},
{
"type": "Range Queries",
"problem": "Distinct Values Queries",
"link": "https://cses.fi/problemset/task/1734"
},
{
"type": "Range Queries",
"problem": "Increasing Array Queries",
"link": "https://cses.fi/problemset/task/2416"
},
{
"type": "Range Queries",
"problem": "Forest Queries II",
"link": "https://cses.fi/problemset/task/1739"
},
{
"type": "Range Queries",
"problem": "Range Updates and Sums",
"link": "https://cses.fi/problemset/task/1735"
},
{
"type": "Range Queries",
"problem": "Polynomial Queries",
"link": "https://cses.fi/problemset/task/1736"
},
{
"type": "Range Queries",
"problem": "Range Queries and Copies",
"link": "https://cses.fi/problemset/task/1737"
},
{
"type": "Tree Algorithms",
"problem": "Subordinates",
"link": "https://cses.fi/problemset/task/1674"
},
{
"type": "Tree Algorithms",
"problem": "Tree Matching",
"link": "https://cses.fi/problemset/task/1130"
},
{
"type": "Tree Algorithms",
"problem": "Tree Diameter",
"link": "https://cses.fi/problemset/task/1131"
},
{
"type": "Tree Algorithms",
"problem": "Tree Distances I",
"link": "https://cses.fi/problemset/task/1132"
},
{
"type": "Tree Algorithms",
"problem": "Tree Distances II",
"link": "https://cses.fi/problemset/task/1133"
},
{
"type": "Tree Algorithms",
"problem": "Company Queries I",
"link": "https://cses.fi/problemset/task/1687"
},
{
"type": "Tree Algorithms",
"problem": "Company Queries II",
"link": "https://cses.fi/problemset/task/1688"
},
{
"type": "Tree Algorithms",
"problem": "Distance Queries",
"link": "https://cses.fi/problemset/task/1135"
},
{
"type": "Tree Algorithms",
"problem": "Counting Paths",
"link": "https://cses.fi/problemset/task/1136"
},
{
"type": "Tree Algorithms",
"problem": "Subtree Queries",
"link": "https://cses.fi/problemset/task/1137"
},
{
"type": "Tree Algorithms",
"problem": "Path Queries",
"link": "https://cses.fi/problemset/task/1138"
},
{
"type": "Tree Algorithms",
"problem": "Path Queries II",
"link": "https://cses.fi/problemset/task/2134"
},
{
"type": "Tree Algorithms",
"problem": "Distinct Colors",
"link": "https://cses.fi/problemset/task/1139"
},
{
"type": "Tree Algorithms",
"problem": "Finding a Centroid",
"link": "https://cses.fi/problemset/task/2079"
},
{
"type": "Tree Algorithms",
"problem": "Fixed-Length Paths I",
"link": "https://cses.fi/problemset/task/2080"
},
{
"type": "Tree Algorithms",
"problem": "Fixed-Length Paths II",
"link": "https://cses.fi/problemset/task/2081"
},
{
"type": "Mathematics",
"problem": "Josephus Queries",
"link": "https://cses.fi/problemset/task/2164"
},
{
"type": "Mathematics",
"problem": "Exponentiation",
"link": "https://cses.fi/problemset/task/1095"
},
{
"type": "Mathematics",
"problem": "Exponentiation II",
"link": "https://cses.fi/problemset/task/1712"
},
{
"type": "Mathematics",
"problem": "Counting Divisors",
"link": "https://cses.fi/problemset/task/1713"
},
{
"type": "Mathematics",
"problem": "Common Divisors",
"link": "https://cses.fi/problemset/task/1081"
},
{
"type": "Mathematics",
"problem": "Sum of Divisors",
"link": "https://cses.fi/problemset/task/1082"
},
{
"type": "Mathematics",
"problem": "Divisor Analysis",
"link": "https://cses.fi/problemset/task/2182"
},
{
"type": "Mathematics",
"problem": "Prime Multiples",
"link": "https://cses.fi/problemset/task/2185"
},
{
"type": "Mathematics",
"problem": "Counting Coprime Pairs",
"link": "https://cses.fi/problemset/task/2417"
},
{
"type": "Mathematics",
"problem": "Binomial Coefficients",
"link": "https://cses.fi/problemset/task/1079"
},
{
"type": "Mathematics",
"problem": "Creating Strings II",
"link": "https://cses.fi/problemset/task/1715"
},
{
"type": "Mathematics",
"problem": "Distributing Apples",
"link": "https://cses.fi/problemset/task/1716"
},
{
"type": "Mathematics",
"problem": "Christmas Party",
"link": "https://cses.fi/problemset/task/1717"
},
{
"type": "Mathematics",
"problem": "Bracket Sequences I",
"link": "https://cses.fi/problemset/task/2064"
},
{
"type": "Mathematics",
"problem": "Bracket Sequences II",
"link": "https://cses.fi/problemset/task/2187"
},
{
"type": "Mathematics",
"problem": "Counting Necklaces",
"link": "https://cses.fi/problemset/task/2209"
},
{
"type": "Mathematics",
"problem": "Counting Grids",
"link": "https://cses.fi/problemset/task/2210"
},
{
"type": "Mathematics",
"problem": "Fibonacci Numbers",
"link": "https://cses.fi/problemset/task/1722"
},
{
"type": "Mathematics",
"problem": "Throwing Dice",
"link": "https://cses.fi/problemset/task/1096"
},
{
"type": "Mathematics",
"problem": "Graph Paths I",
"link": "https://cses.fi/problemset/task/1723"
},
{
"type": "Mathematics",
"problem": "Graph Paths II",
"link": "https://cses.fi/problemset/task/1724"
},
{
"type": "Mathematics",
"problem": "Dice Probability",
"link": "https://cses.fi/problemset/task/1725"
},
{
"type": "Mathematics",
"problem": "Moving Robots",
"link": "https://cses.fi/problemset/task/1726"
},
{
"type": "Mathematics",
"problem": "Candy Lottery",
"link": "https://cses.fi/problemset/task/1727"
},
{
"type": "Mathematics",
"problem": "Inversion Probability",
"link": "https://cses.fi/problemset/task/1728"
},
{
"type": "Mathematics",
"problem": "Stick Game",
"link": "https://cses.fi/problemset/task/1729"
},
{
"type": "Mathematics",
"problem": "Nim Game I",
"link": "https://cses.fi/problemset/task/1730"
},
{
"type": "Mathematics",
"problem": "Nim Game II",
"link": "https://cses.fi/problemset/task/1098"
},
{
"type": "Mathematics",
"problem": "Stair Game",
"link": "https://cses.fi/problemset/task/1099"
},
{
"type": "Mathematics",
"problem": "Grundy's Game",
"link": "https://cses.fi/problemset/task/2207"
},
{
"type": "Mathematics",
"problem": "Another Game",
"link": "https://cses.fi/problemset/task/2208"
},
{
"type": "String Algorithms",
"problem": "Word Combinations",
"link": "https://cses.fi/problemset/task/1731"
},
{
"type": "String Algorithms",
"problem": "String Matching",
"link": "https://cses.fi/problemset/task/1753"
},
{
"type": "String Algorithms",
"problem": "Finding Borders",
"link": "https://cses.fi/problemset/task/1732"
},
{
"type": "String Algorithms",
"problem": "Finding Periods",
"link": "https://cses.fi/problemset/task/1733"
},
{
"type": "String Algorithms",
"problem": "Minimal Rotation",
"link": "https://cses.fi/problemset/task/1110"
},
{
"type": "String Algorithms",
"problem": "Longest Palindrome",
"link": "https://cses.fi/problemset/task/1111"
},
{
"type": "String Algorithms",
"problem": "Required Substring",
"link": "https://cses.fi/problemset/task/1112"
},
{
"type": "String Algorithms",
"problem": "Palindrome Queries",
"link": "https://cses.fi/problemset/task/2420"
},
{
"type": "String Algorithms",
"problem": "Finding Patterns",
"link": "https://cses.fi/problemset/task/2102"
},
{
"type": "String Algorithms",
"problem": "Counting Patterns",
"link": "https://cses.fi/problemset/task/2103"
},
{
"type": "String Algorithms",
"problem": "Pattern Positions",
"link": "https://cses.fi/problemset/task/2104"
},
{
"type": "String Algorithms",
"problem": "Distinct Substrings",
"link": "https://cses.fi/problemset/task/2105"
},
{
"type": "String Algorithms",
"problem": "Repeating Substring",
"link": "https://cses.fi/problemset/task/2106"
},
{
"type": "String Algorithms",
"problem": "String Functions",
"link": "https://cses.fi/problemset/task/2107"
},
{
"type": "String Algorithms",
"problem": "Substring Order I",
"link": "https://cses.fi/problemset/task/2108"
},
{
"type": "String Algorithms",
"problem": "Substring Order II",
"link": "https://cses.fi/problemset/task/2109"
},
{
"type": "String Algorithms",
"problem": "Substring Distribution",
"link": "https://cses.fi/problemset/task/2110"
},
{
"type": "Geometry",
"problem": "Point Location Test",
"link": "https://cses.fi/problemset/task/2189"
},
{
"type": "Geometry",
"problem": "Line Segment Intersection",
"link": "https://cses.fi/problemset/task/2190"
},
{
"type": "Geometry",
"problem": "Polygon Area",
"link": "https://cses.fi/problemset/task/2191"
},
{
"type": "Geometry",
"problem": "Point in Polygon",
"link": "https://cses.fi/problemset/task/2192"
},
{
"type": "Geometry",
"problem": "Polygon Lattice Points",
"link": "https://cses.fi/problemset/task/2193"
},
{
"type": "Geometry",
"problem": "Minimum Euclidean Distance",
"link": "https://cses.fi/problemset/task/2194"
},
{
"type": "Geometry",
"problem": "Convex Hull",
"link": "https://cses.fi/problemset/task/2195"
},
{
"type": "Advanced Techniques",
"problem": "Meet in the Middle",
"link": "https://cses.fi/problemset/task/1628"