QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#719519#516. Roman Holidayskevinyang#AC ✓1ms4000kbC++202.1kb2024-11-07 02:50:452024-11-07 02:50:45

Judging History

This is the latest submission verdict.

  • [2024-11-07 02:50:45]
  • Judged
  • Verdict: AC
  • Time: 1ms
  • Memory: 4000kb
  • [2024-11-07 02:50:45]
  • Submitted

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long

string make(vector<char> c, int amt){
    string ans = "";
    if(amt == 1)ans.push_back(c[0]);
    else if(amt == 2)ans.push_back(c[0]),ans.push_back(c[0]);
    else if(amt == 3)ans.push_back(c[0]),ans.push_back(c[0]),ans.push_back(c[0]);
    else if(amt == 4)ans.push_back(c[0]),ans.push_back(c[1]);
    else if(amt == 5)ans.push_back(c[1]);
    else if(amt == 6)ans.push_back(c[1]),ans.push_back(c[0]);
    else if(amt == 7)ans.push_back(c[1]),ans.push_back(c[0]),ans.push_back(c[0]);
    else if(amt == 8)ans.push_back(c[1]),ans.push_back(c[0]),ans.push_back(c[0]),ans.push_back(c[0]);
    else if(amt == 9)ans.push_back(c[0]),ans.push_back(c[2]);
    return ans;
}

string roman(int x){
    vector<vector<char>>mp = {
        {'I','V','X'},
        {'X','L','C'},
        {'C','D','M'}
    };
    if(x == 1000)return "M";
    int h = x/100;
    int t = (x%100)/10;
    int o = (x%10);
    string ans = make(mp[2],h) + make(mp[1],t) + make(mp[0],o);
    return ans;
}
//955 1910 2865 2956
map<int,int>bad;
map<int,int>good;

int ibad;
int igood;

void gen(){
    vector<pair<string,int>>arr;
    map<int,int>hm;
    for(int i = 1; i<=1000; i++){
        arr.push_back({roman(i),i});
    }
    sort(arr.begin(),arr.end());
    for(int i = 0; i<1000; i++){
        hm[arr[i].second] = i+1;
    }
    //cout << hm[1000];
    for(int i = hm[1000]; i<1000; i++){
        bad[arr[i].second] = 1000 - i;
        //cout << arr[i].first << ' ' << arr[i].second << '\n';
    }
    for(int i = 0; i<hm[1000]; i++){
        good[arr[i].second] = i+1;
    }
    igood = hm[1000];
    ibad = 1000 - hm[1000];
}

signed main() {
    cin.tie(0)->sync_with_stdio(0);
    int t;
    cin >> t;
    gen();
    while(t--){
        
        int x;
        cin >> x;
        int extra = x/1000;
        x%=1000;
        if(bad.count(x)){
            cout << "-" << extra * ibad + bad[x] << '\n';
        }
        else{
            cout << extra * igood + good[x] << '\n';
        }
    }
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3716kb

input:

100
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

output:

901
902
903
904
-54
-53
-52
-51
905
-50
-39
-38
-37
-36
-24
-23
-22
-21
-35
-20
-19
-18
-17
-16
-14
-13
-12
-11
-15
-10
-9
-8
-7
-6
-4
-3
-2
-1
-5
-34
-33
-32
-31
-30
-28
-27
-26
-25
-29
906
907
908
909
910
912
913
914
915
911
916
917
918
919
920
922
923
924
925
921
926
927
928
929
930
932
933
934
9...

result:

ok 100 lines

Test #2:

score: 0
Accepted
time: 1ms
memory: 3780kb

input:

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
...

output:

302
303
304
305
447
448
449
450
306
451
462
463
464
465
477
478
479
480
466
481
482
483
484
485
487
488
489
490
486
491
492
493
494
495
497
498
499
500
496
467
468
469
470
471
473
474
475
476
472
307
308
309
310
311
313
314
315
316
312
317
318
319
320
321
323
324
325
326
322
327
328
329
330
331
333
...

result:

ok 100 lines

Test #3:

score: 0
Accepted
time: 1ms
memory: 3728kb

input:

100
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
...

output:

103
104
105
106
148
149
150
151
107
152
163
164
165
166
178
179
180
181
167
182
183
184
185
186
188
189
190
191
187
192
193
194
195
196
198
199
200
201
197
168
169
170
171
172
174
175
176
177
173
108
109
110
111
112
114
115
116
117
113
118
119
120
121
122
124
125
126
127
123
128
129
130
131
132
134
...

result:

ok 100 lines

Test #4:

score: 0
Accepted
time: 1ms
memory: 3780kb

input:

100
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
...

output:

4
5
6
7
49
50
51
52
8
53
64
65
66
67
79
80
81
82
68
83
84
85
86
87
89
90
91
92
88
93
94
95
96
97
99
100
101
102
98
69
70
71
72
73
75
76
77
78
74
9
10
11
12
13
15
16
17
18
14
19
20
21
22
23
25
26
27
28
24
29
30
31
32
33
35
36
37
38
34
39
40
41
42
43
45
46
47
48
44
54
55
56
57
58
60
61
62
63
59
202

result:

ok 100 lines

Test #5:

score: 0
Accepted
time: 1ms
memory: 4000kb

input:

100
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
...

output:

203
204
205
206
248
249
250
251
207
252
263
264
265
266
278
279
280
281
267
282
283
284
285
286
288
289
290
291
287
292
293
294
295
296
298
299
300
301
297
268
269
270
271
272
274
275
276
277
273
208
209
210
211
212
214
215
216
217
213
218
219
220
221
222
224
225
226
227
223
228
229
230
231
232
234
...

result:

ok 100 lines

Test #6:

score: 0
Accepted
time: 1ms
memory: 3940kb

input:

100
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
...

output:

802
803
804
805
847
848
849
850
806
851
862
863
864
865
877
878
879
880
866
881
882
883
884
885
887
888
889
890
886
891
892
893
894
895
897
898
899
900
896
867
868
869
870
871
873
874
875
876
872
807
808
809
810
811
813
814
815
816
812
817
818
819
820
821
823
824
825
826
822
827
828
829
830
831
833
...

result:

ok 100 lines

Test #7:

score: 0
Accepted
time: 1ms
memory: 3716kb

input:

100
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
...

output:

703
704
705
706
748
749
750
751
707
752
763
764
765
766
778
779
780
781
767
782
783
784
785
786
788
789
790
791
787
792
793
794
795
796
798
799
800
801
797
768
769
770
771
772
774
775
776
777
773
708
709
710
711
712
714
715
716
717
713
718
719
720
721
722
724
725
726
727
723
728
729
730
731
732
734
...

result:

ok 100 lines

Test #8:

score: 0
Accepted
time: 1ms
memory: 4000kb

input:

100
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
...

output:

604
605
606
607
649
650
651
652
608
653
664
665
666
667
679
680
681
682
668
683
684
685
686
687
689
690
691
692
688
693
694
695
696
697
699
700
701
702
698
669
670
671
672
673
675
676
677
678
674
609
610
611
612
613
615
616
617
618
614
619
620
621
622
623
625
626
627
628
624
629
630
631
632
633
635
...

result:

ok 100 lines

Test #9:

score: 0
Accepted
time: 1ms
memory: 3804kb

input:

100
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
...

output:

505
506
507
508
550
551
552
553
509
554
565
566
567
568
580
581
582
583
569
584
585
586
587
588
590
591
592
593
589
594
595
596
597
598
600
601
602
603
599
570
571
572
573
574
576
577
578
579
575
510
511
512
513
514
516
517
518
519
515
520
521
522
523
524
526
527
528
529
525
530
531
532
533
534
536
...

result:

ok 100 lines

Test #10:

score: 0
Accepted
time: 1ms
memory: 3716kb

input:

100
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
...

output:

348
349
350
351
393
394
395
396
352
397
408
409
410
411
423
424
425
426
412
427
428
429
430
431
433
434
435
436
432
437
438
439
440
441
443
444
445
446
442
413
414
415
416
417
419
420
421
422
418
353
354
355
356
357
359
360
361
362
358
363
364
365
366
367
369
370
371
372
368
373
374
375
376
377
379
...

result:

ok 100 lines

Test #11:

score: 0
Accepted
time: 1ms
memory: 3940kb

input:

13
1088
1005
1038
2000
2088
2005
2038
1390
18045
999999999
999999088
999999005
1000000000

output:

1891
-108
-55
1892
2837
-162
-109
1000
-1000
945999457
945999999
-54000000
946000000

result:

ok 13 lines

Test #12:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

50
223394048
306583942
35019432
234972464
137515482
55618248
265094036
686181692
75774244
105029892
231789600
218096505
71226182
632268353
238422006
285243868
1968275
9402000
16643536
56294568
245488161
621231948
127125217
77417856
331549854
97028005
72986400
13617990
487532108
55191651
251074560
50...

output:

-12063301
290027933
33128268
222283734
130089430
52614805
-14315079
649127981
71682376
99357991
219272896
206319663
67380135
598125540
-12874841
269840407
1861862
8894292
15745176
53254950
232231966
587684948
120260430
73236999
313645868
-5239566
69044958
12882080
461205722
52211395
237516821
477238...

result:

ok 50 lines