-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
/
Copy pathrating.json
20077 lines (20077 loc) · 729 KB
/
rating.json
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
[
{
"Rating": 3111.1274320356,
"ID": 3049,
"Title": "Earliest Second to Mark Indices II",
"TitleZH": "标记所有下标的最早秒数 II",
"TitleSlug": "earliest-second-to-mark-indices-ii",
"ContestSlug": "weekly-contest-386",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 386",
"ContestID_zh": "第 386 场周赛"
},
{
"Rating": 3039.3003256659,
"ID": 3003,
"Title": "Maximize the Number of Partitions After Operations",
"TitleZH": "执行操作后的最大分割数量",
"TitleSlug": "maximize-the-number-of-partitions-after-operations",
"ContestSlug": "weekly-contest-379",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 379",
"ContestID_zh": "第 379 场周赛"
},
{
"Rating": 3018.4940165727,
"ID": 1719,
"Title": "Number Of Ways To Reconstruct A Tree",
"TitleZH": "重构一棵树的方案数",
"TitleSlug": "number-of-ways-to-reconstruct-a-tree",
"ContestSlug": "biweekly-contest-43",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 43",
"ContestID_zh": "第 43 场双周赛"
},
{
"Rating": 2978.7961959355,
"ID": 2809,
"Title": "Minimum Time to Make Array Sum At Most x",
"TitleZH": "使数组和小于等于 x 的最少时间",
"TitleSlug": "minimum-time-to-make-array-sum-at-most-x",
"ContestSlug": "biweekly-contest-110",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 110",
"ContestID_zh": "第 110 场双周赛"
},
{
"Rating": 2943.2173551759,
"ID": 2945,
"Title": "Find Maximum Non-decreasing Array Length",
"TitleZH": "找到最大非递减数组的长度",
"TitleSlug": "find-maximum-non-decreasing-array-length",
"ContestSlug": "biweekly-contest-118",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 118",
"ContestID_zh": "第 118 场双周赛"
},
{
"Rating": 2917.8273567322,
"ID": 3022,
"Title": "Minimize OR of Remaining Elements Using Operations",
"TitleZH": "给定操作次数内使剩余元素的或值最小",
"TitleSlug": "minimize-or-of-remaining-elements-using-operations",
"ContestSlug": "weekly-contest-382",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 382",
"ContestID_zh": "第 382 场周赛"
},
{
"Rating": 2873.9745576413,
"ID": 2699,
"Title": "Modify Graph Edge Weights",
"TitleZH": "修改图中的边权",
"TitleSlug": "modify-graph-edge-weights",
"ContestSlug": "weekly-contest-346",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 346",
"ContestID_zh": "第 346 场周赛"
},
{
"Rating": 2872.0290327119,
"ID": 1982,
"Title": "Find Array Given Subset Sums",
"TitleZH": "从子集的和还原数组",
"TitleSlug": "find-array-given-subset-sums",
"ContestSlug": "weekly-contest-255",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 255",
"ContestID_zh": "第 255 场周赛"
},
{
"Rating": 2863.1378294349,
"ID": 770,
"Title": "Basic Calculator IV",
"TitleZH": "基本计算器 IV",
"TitleSlug": "basic-calculator-iv",
"ContestSlug": "weekly-contest-68",
"ProblemIndex": "Q5",
"ContestID_en": "Weekly Contest 68",
"ContestID_zh": "第 68 场周赛"
},
{
"Rating": 2857.6543956169,
"ID": 2851,
"Title": "String Transformation",
"TitleZH": "字符串转换",
"TitleSlug": "string-transformation",
"ContestSlug": "weekly-contest-362",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 362",
"ContestID_zh": "第 362 场周赛"
},
{
"Rating": 2849.4841858619,
"ID": 1728,
"Title": "Cat and Mouse II",
"TitleZH": "猫和老鼠 II",
"TitleSlug": "cat-and-mouse-ii",
"ContestSlug": "weekly-contest-224",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 224",
"ContestID_zh": "第 224 场周赛"
},
{
"Rating": 2824.4551372454,
"ID": 2612,
"Title": "Minimum Reverse Operations",
"TitleZH": "最少翻转操作数",
"TitleSlug": "minimum-reverse-operations",
"ContestSlug": "weekly-contest-339",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 339",
"ContestID_zh": "第 339 场周赛"
},
{
"Rating": 2817.267212602,
"ID": 1977,
"Title": "Number of Ways to Separate Numbers",
"TitleZH": "划分数字的方案数",
"TitleSlug": "number-of-ways-to-separate-numbers",
"ContestSlug": "biweekly-contest-59",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 59",
"ContestID_zh": "第 59 场双周赛"
},
{
"Rating": 2816.0706257586,
"ID": 2916,
"Title": "Subarrays Distinct Element Sum of Squares II",
"TitleZH": "子数组不同元素数目的平方和 II",
"TitleSlug": "subarrays-distinct-element-sum-of-squares-ii",
"ContestSlug": "biweekly-contest-116",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 116",
"ContestID_zh": "第 116 场双周赛"
},
{
"Rating": 2803.7652028979,
"ID": 2060,
"Title": "Check if an Original String Exists Given Two Encoded Strings",
"TitleZH": "同源字符串检测",
"TitleSlug": "check-if-an-original-string-exists-given-two-encoded-strings",
"ContestSlug": "weekly-contest-265",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 265",
"ContestID_zh": "第 265 场周赛"
},
{
"Rating": 2779.7855167601,
"ID": 2983,
"Title": "Palindrome Rearrangement Queries",
"TitleZH": "回文串重新排列查询",
"TitleSlug": "palindrome-rearrangement-queries",
"ContestSlug": "weekly-contest-378",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 378",
"ContestID_zh": "第 378 场周赛"
},
{
"Rating": 2768.8154223451,
"ID": 2836,
"Title": "Maximize Value of Function in a Ball Passing Game",
"TitleZH": "在传球游戏中最大化函数值",
"TitleSlug": "maximize-value-of-function-in-a-ball-passing-game",
"ContestSlug": "weekly-contest-360",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 360",
"ContestID_zh": "第 360 场周赛"
},
{
"Rating": 2765.2533837781,
"ID": 803,
"Title": "Bricks Falling When Hit",
"TitleZH": "打砖块",
"TitleSlug": "bricks-falling-when-hit",
"ContestSlug": "weekly-contest-76",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 76",
"ContestID_zh": "第 76 场周赛"
},
{
"Rating": 2758.9704056427,
"ID": 2902,
"Title": "Count of Sub-Multisets With Bounded Sum",
"TitleZH": "和带限制的子多重集合的数目",
"TitleSlug": "count-of-sub-multisets-with-bounded-sum",
"ContestSlug": "biweekly-contest-115",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 115",
"ContestID_zh": "第 115 场双周赛"
},
{
"Rating": 2711.8717381409,
"ID": 2603,
"Title": "Collect Coins in a Tree",
"TitleZH": "收集树中金币",
"TitleSlug": "collect-coins-in-a-tree",
"ContestSlug": "weekly-contest-338",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 338",
"ContestID_zh": "第 338 场周赛"
},
{
"Rating": 2709.4067070911,
"ID": 3017,
"Title": "Count the Number of Houses at a Certain Distance II",
"TitleZH": "按距离统计房屋对数目 II",
"TitleSlug": "count-the-number-of-houses-at-a-certain-distance-ii",
"ContestSlug": "weekly-contest-381",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 381",
"ContestID_zh": "第 381 场周赛"
},
{
"Rating": 2695.809667046,
"ID": 2977,
"Title": "Minimum Cost to Convert String II",
"TitleZH": "转换字符串的最小成本 II",
"TitleSlug": "minimum-cost-to-convert-string-ii",
"ContestSlug": "weekly-contest-377",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 377",
"ContestID_zh": "第 377 场周赛"
},
{
"Rating": 2690.5859406179,
"ID": 1960,
"Title": "Maximum Product of the Length of Two Palindromic Substrings",
"TitleZH": "两个回文子字符串长度的最大乘积",
"TitleSlug": "maximum-product-of-the-length-of-two-palindromic-substrings",
"ContestSlug": "biweekly-contest-58",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 58",
"ContestID_zh": "第 58 场双周赛"
},
{
"Rating": 2681.7054310332,
"ID": 2573,
"Title": "Find the String with LCP",
"TitleZH": "找出对应 LCP 矩阵的字符串",
"TitleSlug": "find-the-string-with-lcp",
"ContestSlug": "weekly-contest-333",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 333",
"ContestID_zh": "第 333 场周赛"
},
{
"Rating": 2677.1682592316,
"ID": 2791,
"Title": "Count Paths That Can Form a Palindrome in a Tree",
"TitleZH": "树中可以形成回文的路径数",
"TitleSlug": "count-paths-that-can-form-a-palindrome-in-a-tree",
"ContestSlug": "weekly-contest-355",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 355",
"ContestID_zh": "第 355 场周赛"
},
{
"Rating": 2672.7613091907,
"ID": 3086,
"Title": "Minimum Moves to Pick K Ones",
"TitleZH": "拾起 K 个 1 需要的最少行动次数",
"TitleSlug": "minimum-moves-to-pick-k-ones",
"ContestSlug": "weekly-contest-389",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 389",
"ContestID_zh": "第 389 场周赛"
},
{
"Rating": 2666.668150845,
"ID": 1397,
"Title": "Find All Good Strings",
"TitleZH": "找到所有好字符串",
"TitleSlug": "find-all-good-strings",
"ContestSlug": "weekly-contest-182",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 182",
"ContestID_zh": "第 182 场周赛"
},
{
"Rating": 2661.0670044656,
"ID": 1923,
"Title": "Longest Common Subpath",
"TitleZH": "最长公共子路径",
"TitleSlug": "longest-common-subpath",
"ContestSlug": "weekly-contest-248",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 248",
"ContestID_zh": "第 248 场周赛"
},
{
"Rating": 2655.2178711909,
"ID": 1659,
"Title": "Maximize Grid Happiness",
"TitleZH": "最大化网格幸福感",
"TitleSlug": "maximize-grid-happiness",
"ContestSlug": "weekly-contest-215",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 215",
"ContestID_zh": "第 215 场周赛"
},
{
"Rating": 2650.8996457642,
"ID": 2097,
"Title": "Valid Arrangement of Pairs",
"TitleZH": "合法重新排列数对",
"TitleSlug": "valid-arrangement-of-pairs",
"ContestSlug": "weekly-contest-270",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 270",
"ContestID_zh": "第 270 场周赛"
},
{
"Rating": 2648.1748409542,
"ID": 2071,
"Title": "Maximum Number of Tasks You Can Assign",
"TitleZH": "你可以安排的最多任务数目",
"TitleSlug": "maximum-number-of-tasks-you-can-assign",
"ContestSlug": "biweekly-contest-65",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 65",
"ContestID_zh": "第 65 场双周赛"
},
{
"Rating": 2647.8258771458,
"ID": 2386,
"Title": "Find the K-Sum of an Array",
"TitleZH": "找出数组的第 K 大和",
"TitleSlug": "find-the-k-sum-of-an-array",
"ContestSlug": "weekly-contest-307",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 307",
"ContestID_zh": "第 307 场周赛"
},
{
"Rating": 2644.8498152558,
"ID": 2954,
"Title": "Count the Number of Infection Sequences",
"TitleZH": "统计感冒序列的数目",
"TitleSlug": "count-the-number-of-infection-sequences",
"ContestSlug": "weekly-contest-374",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 374",
"ContestID_zh": "第 374 场周赛"
},
{
"Rating": 2640.3824813624,
"ID": 1787,
"Title": "Make the XOR of All Segments Equal to Zero",
"TitleZH": "使所有区间的异或结果为零",
"TitleSlug": "make-the-xor-of-all-segments-equal-to-zero",
"ContestSlug": "weekly-contest-231",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 231",
"ContestID_zh": "第 231 场周赛"
},
{
"Rating": 2633.0144045478,
"ID": 2499,
"Title": "Minimum Total Cost to Make Arrays Unequal",
"TitleZH": "让数组不相等的最小总代价",
"TitleSlug": "minimum-total-cost-to-make-arrays-unequal",
"ContestSlug": "biweekly-contest-93",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 93",
"ContestID_zh": "第 93 场双周赛"
},
{
"Rating": 2628.7957821141,
"ID": 2213,
"Title": "Longest Substring of One Repeating Character",
"TitleZH": "由单个字符重复的最长子字符串",
"TitleSlug": "longest-substring-of-one-repeating-character",
"ContestSlug": "weekly-contest-285",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 285",
"ContestID_zh": "第 285 场周赛"
},
{
"Rating": 2621.1208072273,
"ID": 2281,
"Title": "Sum of Total Strength of Wizards",
"TitleZH": "巫师的总力量和",
"TitleSlug": "sum-of-total-strength-of-wizards",
"ContestSlug": "weekly-contest-294",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 294",
"ContestID_zh": "第 294 场周赛"
},
{
"Rating": 2620.4181842249,
"ID": 1830,
"Title": "Minimum Number of Operations to Make String Sorted",
"TitleZH": "使字符串有序的最少操作次数",
"TitleSlug": "minimum-number-of-operations-to-make-string-sorted",
"ContestSlug": "biweekly-contest-50",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 50",
"ContestID_zh": "第 50 场双周赛"
},
{
"Rating": 2619.7016189999,
"ID": 2790,
"Title": "Maximum Number of Groups With Increasing Length",
"TitleZH": "长度递增组的最大数目",
"TitleSlug": "maximum-number-of-groups-with-increasing-length",
"ContestSlug": "weekly-contest-355",
"ProblemIndex": "Q3",
"ContestID_en": "Weekly Contest 355",
"ContestID_zh": "第 355 场周赛"
},
{
"Rating": 2615.1468269481,
"ID": 2338,
"Title": "Count the Number of Ideal Arrays",
"TitleZH": "统计理想数组的数目",
"TitleSlug": "count-the-number-of-ideal-arrays",
"ContestSlug": "weekly-contest-301",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 301",
"ContestID_zh": "第 301 场周赛"
},
{
"Rating": 2610.9906730644,
"ID": 2056,
"Title": "Number of Valid Move Combinations On Chessboard",
"TitleZH": "棋盘上有效移动组合的数目",
"TitleSlug": "number-of-valid-move-combinations-on-chessboard",
"ContestSlug": "biweekly-contest-64",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 64",
"ContestID_zh": "第 64 场双周赛"
},
{
"Rating": 2610.0826855063,
"ID": 1687,
"Title": "Delivering Boxes from Storage to Ports",
"TitleZH": "从仓库到码头运输箱子",
"TitleSlug": "delivering-boxes-from-storage-to-ports",
"ContestSlug": "biweekly-contest-41",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 41",
"ContestID_zh": "第 41 场双周赛"
},
{
"Rating": 2607.9418744903,
"ID": 2911,
"Title": "Minimum Changes to Make K Semi-palindromes",
"TitleZH": "得到 K 个半回文串的最少修改次数",
"TitleSlug": "minimum-changes-to-make-k-semi-palindromes",
"ContestSlug": "weekly-contest-368",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 368",
"ContestID_zh": "第 368 场周赛"
},
{
"Rating": 2594.135673452,
"ID": 964,
"Title": "Least Operators to Express Number",
"TitleZH": "表示数字的最少运算符",
"TitleSlug": "least-operators-to-express-number",
"ContestSlug": "weekly-contest-116",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 116",
"ContestID_zh": "第 116 场周赛"
},
{
"Rating": 2588.8752130913,
"ID": 2532,
"Title": "Time to Cross a Bridge",
"TitleZH": "过桥的时间",
"TitleSlug": "time-to-cross-a-bridge",
"ContestSlug": "weekly-contest-327",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 327",
"ContestID_zh": "第 327 场周赛"
},
{
"Rating": 2587.8725248485,
"ID": 1883,
"Title": "Minimum Skips to Arrive at Meeting On Time",
"TitleZH": "准时抵达会议现场的最小跳过休息次数",
"TitleSlug": "minimum-skips-to-arrive-at-meeting-on-time",
"ContestSlug": "weekly-contest-243",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 243",
"ContestID_zh": "第 243 场周赛"
},
{
"Rating": 2583.9006314254,
"ID": 2019,
"Title": "The Score of Students Solving Math Expression",
"TitleZH": "解出数学表达式的学生分数",
"TitleSlug": "the-score-of-students-solving-math-expression",
"ContestSlug": "weekly-contest-260",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 260",
"ContestID_zh": "第 260 场周赛"
},
{
"Rating": 2583.406911951,
"ID": 936,
"Title": "Stamping The Sequence",
"TitleZH": "戳印序列",
"TitleSlug": "stamping-the-sequence",
"ContestSlug": "weekly-contest-109",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 109",
"ContestID_zh": "第 109 场周赛"
},
{
"Rating": 2582.0814855506,
"ID": 2813,
"Title": "Maximum Elegance of a K-Length Subsequence",
"TitleZH": "子序列最大优雅度",
"TitleSlug": "maximum-elegance-of-a-k-length-subsequence",
"ContestSlug": "weekly-contest-357",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 357",
"ContestID_zh": "第 357 场周赛"
},
{
"Rating": 2581.9961985753,
"ID": 2617,
"Title": "Minimum Number of Visited Cells in a Grid",
"TitleZH": "网格图中最少访问的格子数",
"TitleSlug": "minimum-number-of-visited-cells-in-a-grid",
"ContestSlug": "weekly-contest-340",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 340",
"ContestID_zh": "第 340 场周赛"
},
{
"Rating": 2575.9570281316,
"ID": 1531,
"Title": "String Compression II",
"TitleZH": "压缩字符串 II",
"TitleSlug": "string-compression-ii",
"ContestSlug": "weekly-contest-199",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 199",
"ContestID_zh": "第 199 场周赛"
},
{
"Rating": 2571.552028121,
"ID": 1489,
"Title": "Find Critical and Pseudo-Critical Edges in Minimum Spanning Tree",
"TitleZH": "找到最小生成树里的关键边和伪关键边",
"TitleSlug": "find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree",
"ContestSlug": "weekly-contest-194",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 194",
"ContestID_zh": "第 194 场周赛"
},
{
"Rating": 2566.5910742837,
"ID": 913,
"Title": "Cat and Mouse",
"TitleZH": "猫和老鼠",
"TitleSlug": "cat-and-mouse",
"ContestSlug": "weekly-contest-104",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 104",
"ContestID_zh": "第 104 场周赛"
},
{
"Rating": 2561.7794931859,
"ID": 2030,
"Title": "Smallest K-Length Subsequence With Occurrences of a Letter",
"TitleZH": "含特定字母的最小子序列",
"TitleSlug": "smallest-k-length-subsequence-with-occurrences-of-a-letter",
"ContestSlug": "weekly-contest-261",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 261",
"ContestID_zh": "第 261 场周赛"
},
{
"Rating": 2561.508149216,
"ID": 2234,
"Title": "Maximum Total Beauty of the Gardens",
"TitleZH": "花园的最大总美丽值",
"TitleSlug": "maximum-total-beauty-of-the-gardens",
"ContestSlug": "weekly-contest-288",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 288",
"ContestID_zh": "第 288 场周赛"
},
{
"Rating": 2559.4351004238,
"ID": 1815,
"Title": "Maximum Number of Groups Getting Fresh Donuts",
"TitleZH": "得到新鲜甜甜圈的最多组数",
"TitleSlug": "maximum-number-of-groups-getting-fresh-donuts",
"ContestSlug": "biweekly-contest-49",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 49",
"ContestID_zh": "第 49 场双周赛"
},
{
"Rating": 2558.3297484354,
"ID": 2014,
"Title": "Longest Subsequence Repeated k Times",
"TitleZH": "重复 K 次的最长子序列",
"TitleSlug": "longest-subsequence-repeated-k-times",
"ContestSlug": "weekly-contest-259",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 259",
"ContestID_zh": "第 259 场周赛"
},
{
"Rating": 2556.5072256577,
"ID": 3077,
"Title": "Maximum Strength of K Disjoint Subarrays",
"TitleZH": "K 个不相交子数组的最大能量值",
"TitleSlug": "maximum-strength-of-k-disjoint-subarrays",
"ContestSlug": "weekly-contest-388",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 388",
"ContestID_zh": "第 388 场周赛"
},
{
"Rating": 2552.505777081,
"ID": 3098,
"Title": "Find the Sum of Subsequence Powers",
"TitleZH": "求出所有子序列的能量和",
"TitleSlug": "find-the-sum-of-subsequence-powers",
"ContestSlug": "biweekly-contest-127",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 127",
"ContestID_zh": "第 127 场双周赛"
},
{
"Rating": 2540.438150736,
"ID": 3013,
"Title": "Divide an Array Into Subarrays With Minimum Cost II",
"TitleZH": "将数组分成最小总代价的子数组 II",
"TitleSlug": "divide-an-array-into-subarrays-with-minimum-cost-ii",
"ContestSlug": "biweekly-contest-122",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 122",
"ContestID_zh": "第 122 场双周赛"
},
{
"Rating": 2539.863726397,
"ID": 1819,
"Title": "Number of Different Subsequences GCDs",
"TitleZH": "序列中不同最大公约数的数目",
"TitleSlug": "number-of-different-subsequences-gcds",
"ContestSlug": "weekly-contest-235",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 235",
"ContestID_zh": "第 235 场周赛"
},
{
"Rating": 2537.7965575726,
"ID": 1595,
"Title": "Minimum Cost to Connect Two Groups of Points",
"TitleZH": "连通两组点的最小成本",
"TitleSlug": "minimum-cost-to-connect-two-groups-of-points",
"ContestSlug": "weekly-contest-207",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 207",
"ContestID_zh": "第 207 场周赛"
},
{
"Rating": 2533.7796160302,
"ID": 1948,
"Title": "Delete Duplicate Folders in System",
"TitleZH": "删除系统中的重复文件夹",
"TitleSlug": "delete-duplicate-folders-in-system",
"ContestSlug": "weekly-contest-251",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 251",
"ContestID_zh": "第 251 场周赛"
},
{
"Rating": 2533.3027905062,
"ID": 1675,
"Title": "Minimize Deviation in Array",
"TitleZH": "数组的最小偏移量",
"TitleSlug": "minimize-deviation-in-array",
"ContestSlug": "weekly-contest-217",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 217",
"ContestID_zh": "第 217 场周赛"
},
{
"Rating": 2533.2830157959,
"ID": 2736,
"Title": "Maximum Sum Queries",
"TitleZH": "最大和查询",
"TitleSlug": "maximum-sum-queries",
"ContestSlug": "weekly-contest-349",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 349",
"ContestID_zh": "第 349 场周赛"
},
{
"Rating": 2531.6452775023,
"ID": 1896,
"Title": "Minimum Cost to Change the Final Value of Expression",
"TitleZH": "反转表达式值的最少操作次数",
"TitleSlug": "minimum-cost-to-change-the-final-value-of-expression",
"ContestSlug": "biweekly-contest-54",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 54",
"ContestID_zh": "第 54 场双周赛"
},
{
"Rating": 2530.6905139914,
"ID": 1776,
"Title": "Car Fleet II",
"TitleZH": "车队 II",
"TitleSlug": "car-fleet-ii",
"ContestSlug": "weekly-contest-230",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 230",
"ContestID_zh": "第 230 场周赛"
},
{
"Rating": 2529.5251086936,
"ID": 1632,
"Title": "Rank Transform of a Matrix",
"TitleZH": "矩阵转换后的秩",
"TitleSlug": "rank-transform-of-a-matrix",
"ContestSlug": "weekly-contest-212",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 212",
"ContestID_zh": "第 212 场周赛"
},
{
"Rating": 2517.6829964848,
"ID": 2040,
"Title": "Kth Smallest Product of Two Sorted Arrays",
"TitleZH": "两个有序数组的第 K 小乘积",
"TitleSlug": "kth-smallest-product-of-two-sorted-arrays",
"ContestSlug": "biweekly-contest-63",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 63",
"ContestID_zh": "第 63 场双周赛"
},
{
"Rating": 2515.7520586008,
"ID": 2272,
"Title": "Substring With Largest Variance",
"TitleZH": "最大波动的子字符串",
"TitleSlug": "substring-with-largest-variance",
"ContestSlug": "biweekly-contest-78",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 78",
"ContestID_zh": "第 78 场双周赛"
},
{
"Rating": 2507.9960044659,
"ID": 2846,
"Title": "Minimum Edge Weight Equilibrium Queries in a Tree",
"TitleZH": "边权重均等查询",
"TitleSlug": "minimum-edge-weight-equilibrium-queries-in-a-tree",
"ContestSlug": "weekly-contest-361",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 361",
"ContestID_zh": "第 361 场周赛"
},
{
"Rating": 2502.5176603922,
"ID": 1938,
"Title": "Maximum Genetic Difference Query",
"TitleZH": "查询最大基因差",
"TitleSlug": "maximum-genetic-difference-query",
"ContestSlug": "weekly-contest-250",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 250",
"ContestID_zh": "第 250 场周赛"
},
{
"Rating": 2499.5640490579,
"ID": 1735,
"Title": "Count Ways to Make Array With Product",
"TitleZH": "生成乘积数组的方案数",
"TitleSlug": "count-ways-to-make-array-with-product",
"ContestSlug": "biweekly-contest-44",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 44",
"ContestID_zh": "第 44 场双周赛"
},
{
"Rating": 2499.3282271507,
"ID": 2157,
"Title": "Groups of Strings",
"TitleZH": "字符串分组",
"TitleSlug": "groups-of-strings",
"ContestSlug": "weekly-contest-278",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 278",
"ContestID_zh": "第 278 场周赛"
},
{
"Rating": 2489.6652421066,
"ID": 2035,
"Title": "Partition Array Into Two Arrays to Minimize Sum Difference",
"TitleZH": "将数组分成两个数组并最小化数组和的差",
"TitleSlug": "partition-array-into-two-arrays-to-minimize-sum-difference",
"ContestSlug": "weekly-contest-262",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 262",
"ContestID_zh": "第 262 场周赛"
},
{
"Rating": 2486.2339675701,
"ID": 1916,
"Title": "Count Ways to Build Rooms in an Ant Colony",
"TitleZH": "统计为蚁群构筑房间的不同顺序",
"TitleSlug": "count-ways-to-build-rooms-in-an-ant-colony",
"ContestSlug": "weekly-contest-247",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 247",
"ContestID_zh": "第 247 场周赛"
},
{
"Rating": 2483.9435767299,
"ID": 1932,
"Title": "Merge BSTs to Create Single BST",
"TitleZH": "合并多棵二叉搜索树",
"TitleSlug": "merge-bsts-to-create-single-bst",
"ContestSlug": "weekly-contest-249",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 249",
"ContestID_zh": "第 249 场周赛"
},
{
"Rating": 2481.8722909195,
"ID": 2289,
"Title": "Steps to Make Array Non-decreasing",
"TitleZH": "使数组按非递减顺序排列",
"TitleSlug": "steps-to-make-array-non-decreasing",
"ContestSlug": "weekly-contest-295",
"ProblemIndex": "Q3",
"ContestID_en": "Weekly Contest 295",
"ContestID_zh": "第 295 场周赛"
},
{
"Rating": 2481.7175364169,
"ID": 1330,
"Title": "Reverse Subarray To Maximize Array Value",
"TitleZH": "翻转子数组得到最大的数组值",
"TitleSlug": "reverse-subarray-to-maximize-array-value",
"ContestSlug": "biweekly-contest-18",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 18",
"ContestID_zh": "第 18 场双周赛"
},
{
"Rating": 2479.3282985529,
"ID": 1803,
"Title": "Count Pairs With XOR in a Range",
"TitleZH": "统计异或值在范围内的数对有多少",
"TitleSlug": "count-pairs-with-xor-in-a-range",
"ContestSlug": "weekly-contest-233",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 233",
"ContestID_zh": "第 233 场周赛"
},
{
"Rating": 2476.7727985927,
"ID": 2117,
"Title": "Abbreviating the Product of a Range",
"TitleZH": "一个区间内所有数乘积的缩写",
"TitleSlug": "abbreviating-the-product-of-a-range",
"ContestSlug": "biweekly-contest-68",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 68",
"ContestID_zh": "第 68 场双周赛"
},
{
"Rating": 2476.451764287,
"ID": 1622,
"Title": "Fancy Sequence",
"TitleZH": "奇妙序列",
"TitleSlug": "fancy-sequence",
"ContestSlug": "biweekly-contest-37",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 37",
"ContestID_zh": "第 37 场双周赛"
},
{
"Rating": 2470.2118194809,
"ID": 2286,
"Title": "Booking Concert Tickets in Groups",
"TitleZH": "以组为单位订音乐会的门票",
"TitleSlug": "booking-concert-tickets-in-groups",
"ContestSlug": "biweekly-contest-79",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 79",
"ContestID_zh": "第 79 场双周赛"
},
{
"Rating": 2466.8891773908,
"ID": 1703,
"Title": "Minimum Adjacent Swaps for K Consecutive Ones",
"TitleZH": "得到连续 K 个 1 的最少相邻交换次数",
"TitleSlug": "minimum-adjacent-swaps-for-k-consecutive-ones",
"ContestSlug": "biweekly-contest-42",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 42",
"ContestID_zh": "第 42 场双周赛"
},
{
"Rating": 2464.5077611012,
"ID": 1994,
"Title": "The Number of Good Subsets",
"TitleZH": "好子集的数目",
"TitleSlug": "the-number-of-good-subsets",
"ContestSlug": "biweekly-contest-60",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 60",
"ContestID_zh": "第 60 场双周赛"
},
{
"Rating": 2460.3152437576,
"ID": 2440,
"Title": "Create Components With Same Value",
"TitleZH": "创建价值相同的连通块",
"TitleSlug": "create-components-with-same-value",
"ContestSlug": "biweekly-contest-89",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 89",
"ContestID_zh": "第 89 场双周赛"
},
{
"Rating": 2457.115574186,
"ID": 1782,
"Title": "Count Pairs Of Nodes",
"TitleZH": "统计点对的数目",
"TitleSlug": "count-pairs-of-nodes",
"ContestSlug": "biweekly-contest-47",
"ProblemIndex": "Q4",
"ContestID_en": "Biweekly Contest 47",
"ContestID_zh": "第 47 场双周赛"
},
{
"Rating": 2456.3900212097,
"ID": 1499,
"Title": "Max Value of Equation",
"TitleZH": "满足不等式的最大值",
"TitleSlug": "max-value-of-equation",
"ContestSlug": "weekly-contest-195",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 195",
"ContestID_zh": "第 195 场周赛"
},
{
"Rating": 2455.8244137907,
"ID": 1040,
"Title": "Moving Stones Until Consecutive II",
"TitleZH": "移动石子直到连续 II",
"TitleSlug": "moving-stones-until-consecutive-ii",
"ContestSlug": "weekly-contest-135",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 135",
"ContestID_zh": "第 135 场周赛"
},
{
"Rating": 2454.7653333657,
"ID": 1900,
"Title": "The Earliest and Latest Rounds Where Players Compete",
"TitleZH": "最佳运动员的比拼回合",
"TitleSlug": "the-earliest-and-latest-rounds-where-players-compete",
"ContestSlug": "weekly-contest-245",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 245",
"ContestID_zh": "第 245 场周赛"
},
{
"Rating": 2453.9054896968,
"ID": 2463,
"Title": "Minimum Total Distance Traveled",
"TitleZH": "最小移动总距离",
"TitleSlug": "minimum-total-distance-traveled",
"ContestSlug": "weekly-contest-318",
"ProblemIndex": "Q4",
"ContestID_en": "Weekly Contest 318",