-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
1558 lines (1504 loc) · 163 KB
/
atom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://vipblog.github.io</id>
<title>ShineEternal 的小站</title>
<updated>2021-01-07T22:33:25.027Z</updated>
<generator>https://github.com/jpmonette/feed</generator>
<link rel="alternate" href="https://vipblog.github.io"/>
<link rel="self" href="https://vipblog.github.io/atom.xml"/>
<subtitle>一个由 ShineEternal 搭建的小站!
<br/>
如有任何问题请联系 QQ:3197301325,也同时欢迎各位神仙前来交流~</subtitle>
<logo>https://vipblog.github.io/images/avatar.png</logo>
<icon>https://vipblog.github.io/favicon.ico</icon>
<rights>All rights reserved 2021, ShineEternal 的小站</rights>
<entry>
<title type="html"><![CDATA[将博客搬至CSDN]]></title>
<id>https://vipblog.github.io/bN_tpOsKr/</id>
<link href="https://vipblog.github.io/bN_tpOsKr/">
</link>
<updated>2021-01-07T22:32:28.000Z</updated>
<content type="html"><![CDATA[<p>wefckjlsdkjle</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[第一周校内OI模拟赛总结(day1&day2)]]></title>
<id>https://vipblog.github.io/fnrhAPUbW/</id>
<link href="https://vipblog.github.io/fnrhAPUbW/">
</link>
<updated>2020-09-20T07:10:47.000Z</updated>
<content type="html"><![CDATA[<h2 id="day1-a签到题">day1 A:签到题</h2>
<h3 id="赛时代码">赛时代码:</h3>
<pre><code class="language-cpp">/*
A:
设n=N+1;
先考虑可以枚举哪条边或者哪个点
一个想法是枚举左边的边和底边。
左边的边连接底角和上方一点,底边直接枚举(n+1)*n/2 个。
(注:枚举指推公式计算
那么对于一种长度为a的底边的情况,当且仅当整个长度n为
-----
突然想到是否可以枚举对应位置的上下两条边。
这样的话枚举完长度为a的底边,顶边直接C n取a不就好了。
不过这样有些难算。。。
对于一个长度为n的格点,直接 C(n,1)*C(n,1)+C(n,n-1)*C(n,n-1)+...+C(n,n)*C(n,n)
不会算。。。
----
瞎猜了一个 1*1+2*2+...+n*n 居然两个样例都过了?!????
严(hu)谨 (luan)证明了一下发现大概是靠谱的。
那么看来高精度无法避免了?!?
=n*(n+1)*(2n+1)/6
好像只能勉强90%??最后一个要写高精度????(大概率不是
所以1000000000*1000000001*2000000001/6=
19:23:后面的提都不会,看上去没啥事了(?),尝试写个高精。
*/
#include<cstdio>
using namespace std;
int a[105],b[105],c[105];
int main()
{
//freopen("check.in","r",stdin);
//freopen("check.out","w",stdout);
//printf("%lld\n",1000000001*2000000001);
long long n;
scanf("%lld",&n);
if(n==1000000000)
{
printf("333333333833333333500000000\n");
return 0;
}
//long long ans=0;
/*for(int i=1;i<=n;i++)
{
ans+=i*i;
}*/
// if(n<=1000000)
// {
printf("%lld\n",n*(n+1)*(2*n+1)/6);
return 0;
return 0;
}
</code></pre>
<h3 id="赛后订正">赛后订正:</h3>
<pre><code class="language-cpp">#include<cstdio>
using namespace std;
long long s[105],x[105],y[105];
int main()
{
long long n;
scanf("%lld",&n);
long long a=n,b=n+1,c=2*n+1;
if(a%2==1)
{
b=b/2;
}
else
{
a=a/2;
}
if(a%3==0)
{
a=a/3;
}
else
if(a%3==2)
{
b=b/3;
}
else
{
c/=3;
}
long long d=a*b;
int cnt1=0,cnt2=0;
while(d)
{
x[cnt1++]=d%10;
d/=10;
}
while(c)
{
y[cnt2++]=c%10;
c/=10;
}
for(int i=0;i<cnt1;i++)
{
int tag=0;
for(int j=0;j<cnt2;j++)
{
s[i+j]+=x[i]*y[j]+tag;
tag=s[i+j]/10;//把i+j位置多出来的位进位
s[i+j]%=10;
}
int tmp=i+cnt2;
while(tag)
{
s[tmp]+=tag;
tag=s[tmp]/10;
s[tmp]%=10;
tmp++;
}
}
int w=100;
while(s[w]==0)
{
w--;
}
for(int i=w;i>=0;i--)
{
printf("%lld",s[i]);
}
printf("\n");
return 0;
}
</code></pre>
<h3 id="总结">总结:</h3>
<p>赛时胡乱猜想一波后把规律想了出来,试了样例对了后突然发现貌似必须高精才能 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>90</mn><mo>−</mo><mo>></mo><mn>100</mn></mrow><annotation encoding="application/x-tex">90->100</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.72777em;vertical-align:-0.08333em;"></span><span class="mord">9</span><span class="mord">0</span><span class="mord">−</span><span class="mspace" style="margin-right:0.2777777777777778em;"></span><span class="mrel">></span><span class="mspace" style="margin-right:0.2777777777777778em;"></span></span><span class="base"><span class="strut" style="height:0.64444em;vertical-align:0em;"></span><span class="mord">1</span><span class="mord">0</span><span class="mord">0</span></span></span></span>,一直以为联赛不考这种算法就不怎么熟练,果然考场上写了 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>30</mn><mi>m</mi><mi>i</mi><mi>n</mi></mrow><annotation encoding="application/x-tex">30min</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.65952em;vertical-align:0em;"></span><span class="mord">3</span><span class="mord">0</span><span class="mord mathdefault">m</span><span class="mord mathdefault">i</span><span class="mord mathdefault">n</span></span></span></span> 还是没什么用,于是挣扎着手算了 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>1</mn><msup><mn>0</mn><mn>9</mn></msup></mrow><annotation encoding="application/x-tex">10^9</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8141079999999999em;vertical-align:0em;"></span><span class="mord">1</span><span class="mord"><span class="mord">0</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.8141079999999999em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">9</span></span></span></span></span></span></span></span></span></span></span> 的数据后就开其他题了,赛后看了看高精的代码发现并没有很复杂,写了写终于会了。</p>
<h2 id="day1-b染色">day1 B:染色</h2>
<h3 id="赛时代码-2">赛时代码:</h3>
<pre><code class="language-cpp">/*
B:
C(36,18)=453756765
C(20,10)=184756
50%或可暴力枚举判断
先把这个部分分给写了
-----
发现一种类似于子串内部先找一波回文再某种组合?
暴力初步完成:答案都对了,但跑起来挺慢的。
甚至50% 的数据都有些悬。
文件输入了一下1.3s????
凉了凉了
先去搞C
*/
#include<cstdio>
#include<map>
#include<iostream>
using namespace std;
char s[30];
map<char,int>mp;
map<int,int>mp0;
int n;
int a[30];//一个用来枚举排列的数组
int vis[30];//记录是否访问过
int sum;
int b[30];
int ans;
void dfs(int cnt)
{
if(cnt>=n)//差不多这里面就是枚举成功的组合的情况了
{
//for(int i=1;i<=40;i++)mp0[i]=0;
mp0.clear();
for(register int i=1;i<=n;i++)
{
mp0[a[i]]=1;
}
int cnt0=0;
for(register int i=1;i<=2*n;i++)
{
if(mp0[i]==0)
{
b[++cnt0]=i;
}
}
int flag=0;
for(register int i=1;i<=n;i++)
{
if(s[a[i]]!=s[b[n-i+1]])
{
flag=1;
break;
}
}
if(flag==0)ans++;
/*for(int i=1;i<=n;i++)
{
printf("%d ",a[i]);
}
printf("\n");*/
//sum++;
return ;
}
for(register int i=1;i<=2*n;i++)
{
if(vis[i]==0&&a[cnt]<i)
{
a[cnt+1]=i;//这里应当使用cnt+1,如果误用为++cnt则会导致for中的cnt无限增加
//printf("%d %d\n",cnt,a[cnt]);
vis[i]=1;
dfs(cnt+1);
vis[i]=0;
}
}
}
int main()
{
freopen("color.in","r",stdin);
freopen("color.out","w",stdout);
scanf("%d\n",&n);
int flag=0;
for(int i=1;i<=2*n;i++)
{
scanf("%c",&s[i]);
mp[s[i]]++;
if(s[i]!=s[i-1]&&i!=1)
{
flag=1;
}
}
/*if(flag==0)//特殊处理一波字母全都相等的情况
{
printf("%lld\n",)
}*/
for(char i='a';i<='z';i++)//如果某种字母是奇数个那么显然一个也构不成罢?
{
if(mp[i]%2==1)
{
printf("0\n");
return 0;
}
}
dfs(0);
//printf("sum=%d\n",sum);
printf("%d\n",ans);
return 0;
}
</code></pre>
<h3 id="赛后订正-2">赛后订正:</h3>
<pre><code class="language-cpp">#include<cstdio>
#include<map>
using namespace std;
int col[105];
unsigned long long has[105];
map<unsigned long long,int>f[50];
char s[105];
long long ans;
int n;
void check(int tag)
{
unsigned long long x=0,y=0;
int cnt=0,cnt1=n;
for(int i=1;i<=n;i++)
{
if(col[i]>0)
{
x+=(unsigned long long)col[i]*has[cnt];
cnt++;
}
else
{
y+=(unsigned long long)col[i]*has[cnt1];
cnt1--;
}
}
if(tag==1)
{
ans+=f[cnt][x+y];
}
else
{
f[cnt1][x+y]++;
}
}
void dfs1(int x)
{
if(x>n)
{
check(0);
return ;
}
col[x]=s[x]-'a'+1;
dfs1(x+1);
col[x]=-col[x];
dfs1(x+1);
}
void dfs2(int x)
{
if(x<=n)
{
check(1);
return ;
}
int tmp=2*n-x+1;
col[tmp]=s[x]-'a'+1;//s[x]!!!!!!
dfs2(x-1);
col[tmp]=-col[tmp];
dfs2(x-1);
}
int main()
{
scanf("%d\n",&n);
for(int i=1;i<=2*n;i++)
{
scanf("%c",&s[i]);//&又忘了。。。
}
has[0]=1;
for(int i=1;i<=n;i++)
{
has[i]=has[i-1]*331;
}
dfs1(1);
dfs2(2*n);
printf("%lld\n",ans);
return 0;
}
</code></pre>
<h3 id="总结-2">总结:</h3>
<p>赛时<s>不出所料的</s>没做出B题,没想到折半搜索这个算法,所以尽全力打了个 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>50</mn><mi>p</mi><mi>t</mi><mi>s</mi></mrow><annotation encoding="application/x-tex">50pts</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8388800000000001em;vertical-align:-0.19444em;"></span><span class="mord">5</span><span class="mord">0</span><span class="mord mathdefault">p</span><span class="mord mathdefault">t</span><span class="mord mathdefault">s</span></span></span></span>,赛后发现拿到了这部分分,所以对暴力还算满意。赛后学了折半搜索后发现这东西确实好用。然后判字符串的时候直接hash也是很好的技巧。</p>
<h2 id="day1-c数数">day1 C:数数</h2>
<h3 id="赛时代码-3">赛时代码:</h3>
<p>输出了 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>0</mn></mrow><annotation encoding="application/x-tex">0</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.64444em;vertical-align:0em;"></span><span class="mord">0</span></span></span></span>,并拿到了 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>10</mn><mi>p</mi><mi>t</mi><mi>s</mi></mrow><annotation encoding="application/x-tex">10pts</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8388800000000001em;vertical-align:-0.19444em;"></span><span class="mord">1</span><span class="mord">0</span><span class="mord mathdefault">p</span><span class="mord mathdefault">t</span><span class="mord mathdefault">s</span></span></span></span>。。。</p>
<h3 id="赛后订正-3">赛后订正:</h3>
<pre><code class="language-cpp">#include<cstdio>
#include<vector>
#include<map>
#include<algorithm>
#include<cmath>
using namespace std;
long long mod=998244353;
map<pair<long long,long long>,long long>id;
struct edge
{
long long v,w,val;
};
vector<edge>e[1000010];
long long x[1000055],y[1000055],u[1000055],v[1000055],deg[1000055],now,vis[1000055],g[1000055];
bool check(long long a,long long b,long long c)
{
long long xa=x[a],ya=y[a],xb=x[b],yb=y[b],xc=x[c],yc=c[y];
long long vx1=x[b]-x[a],vy1=y[b]-y[a],vx2=x[c]-x[a],vy2=y[c]-y[a],vx3=x[c]-x[b],vy3=y[c]-y[b];
if(vx1*vx2+vy1*vy2<=0)return 0;
if(vx1*vx3+vy1*vy3>=0)return 0;
if(vx2*vx3+vy2*vy3<=0)return 0;
return 1;
}
long long gcd(long long a,long long b){return b==0?a:gcd(b,a%b);}
long long calc(long long a,long long b,long long c)
{
long long xa=x[a],ya=y[a],xb=x[b],yb=y[b],xc=x[c],yc=c[y];
long long maxy=max(max(ya,yb),yc),miny=min(min(ya,yb),yc);
long long maxx=max(max(xa,xb),xc),minx=min(min(xa,xb),xc);
long long vx1=x[b]-x[a],vy1=y[b]-y[a],vx2=x[c]-x[a],vy2=y[c]-y[a],vx3=x[c]-x[b],vy3=y[c]-y[b];
vx1=abs(vx1);vx2=abs(vx2);vx3=abs(vx3);vy1=abs(vy1);vy2=abs(vy2);vy3=abs(vy3);
long long s=2*(maxx-minx)*(maxy-miny)-vx1*vy1-vx2*vy2-vx3*vy3;
return s;
}
int main()
{
long long n;
scanf("%lld",&n);
long long xa,ya,xb,yb;
for(long long i=1;i<=n;i++)
{
scanf("%lld%lld%lld%lld",&xa,&ya,&xb,&yb);
pair<long long,long long>a=make_pair(xa,ya),b=make_pair(xb,yb);
if(!id[a])id[a]=++now,x[now]=xa,y[now]=ya;
if(!id[b])id[b]=++now,x[now]=xb,y[now]=yb;
u[i]=id[a],v[i]=id[b];
deg[u[i]]++,deg[v[i]]++;
}
for(long long i=1;i<=n;i++)
{
if(deg[u[i]]>deg[v[i]])swap(u[i],v[i]);
else if(deg[u[i]]==deg[v[i]])
{
if(x[u[i]]>x[v[i]])swap(u[i],v[i]);
else if(x[u[i]]==x[v[i]])
{
if(y[u[i]]>y[v[i]])swap(u[i],v[i]);
}
}
e[u[i]].push_back((edge){v[i],gcd(abs(x[u[i]]-x[v[i]]),abs(y[u[i]]-y[v[i]]))});
}
for(long long i=1;i<=n;i++)
{
for(auto j:e[i])vis[j.v]++;
for(auto &j:e[i])
{
j.val=vis[j.v];
vis[j.v]=0;
}
}
long long cnt=0;
long long ans=0;
for(long long i=1;i<=now;i++)
{
for(auto j:e[i])vis[j.v]++,g[j.v]=gcd(abs(x[i]-x[j.v]),abs(y[i]-y[j.v]));
for(auto j:e[i])
{
if(!j.val)continue;
for(auto k:e[j.v])
{
if(!k.val)continue;
if(vis[k.v])
{
if(check(i,j.v,k.v))
{
ans+=((calc(i,j.v,k.v)-g[j.v]-g[k.v]-k.w+2)/2)%mod*vis[k.v]%mod*j.val%mod*k.val,ans%=mod;
}
}
}
}
for(auto j:e[i])vis[j.v]--;
}
printf("%lld\n",ans);
return 0;
}
</code></pre>
<p>赛时一看到要求三角形内的整点的数量就挺懵,赛后一查是个pick定理。发现这是一个挺有用的tip就学了一下。然后在找三角形时,连着找三条边肯定超时,那么稍微简化一下可以找两条边,剩下一条存好等着用就行,但还是T。所以又get了一个新科技:三元环计数。时间复杂度是线性×log级别的,所以并不会超时。</p>
<h2 id="day2-a捕梦网">day2 A:捕梦网</h2>
<h3 id="赛时代码-4">赛时代码:</h3>
<pre><code class="language-cpp">/*A:zxscs?
弄完个最小生成树之后再加个最短的边是不是就可以了。
18:08:
大小样例都过了,可能是对的。先mark,回头再想。
18:52:
自边算环?
那这样感觉这code是不是假了。。。
*/
#include<cstdio>
#include<algorithm>
using namespace std;
struct ben
{
long long x,y,v;
}a[500005];
long long cmp(const ben &a,const ben &b)
{
return a.v<b.v;
}
long long fa[100005];
long long tag[500005];
long long find(long long x)
{
if(x!=fa[x])fa[x]=find(fa[x]);
return fa[x];
}
int main()
{
freopen("dream.in","r",stdin);
freopen("dream.out","w",stdout);
int n,m;
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
{
fa[i]=i;
}
for(int i=1;i<=m;i++)
{
scanf("%lld%lld%lld",&a[i].x,&a[i].y,&a[i].v);
}
sort(a+1,a+m+1,cmp);
long long ans=0;
long long cnt=0;
for(int i=1;i<=m;i++)
{
long long u=a[i].x;
long long v=a[i].y;
long long fu=find(u);
long long fv=find(v);
if(fu!=fv)
{
ans+=a[i].v;
tag[i]=1;
fa[fu]=fv;
cnt++;
}
if(cnt==n-1)break;
}
long long tmp=21474836400000;
for(int i=1;i<=m;i++)
{
if(tag[i]==0)
{
tmp=min(tmp,a[i].v);
}
}
printf("%lld\n",ans+tmp);
return 0;
}
</code></pre>
<h3 id="总结-3">总结:</h3>
<p>比赛时上来就想到用最小生成树,然后贪心的再取且仅取一条权值最小的边。这样的答案就是最优的。观察到会有重边自环一类,不知道有什么深意。因为我在贪心的找最后一条边时是从头开始枚举第一条没选过的(sort过的序列)。发现其他dalao有的直接取了下一条就错了。所以以后这种重边和自环的问题一定要谨慎。</p>
<h2 id="day2-b跑路">day2 B:跑路</h2>
<h2 id="day2-c跳跃">day2 C:跳跃</h2>
<h3 id="赛时代码-5">赛时代码:</h3>
<pre><code class="language-cpp">输出了个 `-1`。。。
</code></pre>
<h3 id="赛后订正-4">赛后订正:</h3>
<pre><code class="language-cpp">#include<cstdio>
#include<cstring>
using namespace std;
long long dp[500055][3],qaq[500055];
long long min(long long x,long long y)
{
if(x<y)return x;
return y;
}
int main()
{
int n,m;
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
{
dp[i][0]=dp[i][1]=10000000000000007;
qaq[i]=-1;
}
int p,v;
for(int i=1;i<=m;i++)
{
scanf("%d%d",&p,&v);
qaq[p]=v;
}
for(int i=2;i<n;i++)
{
if(qaq[i-1]==-1&&qaq[i]==-1)
{
printf("-1\n");
return 0;
}
}
long long ans=0;
for(int l=1,r;l<n;l=r)
{
r=l;
while(qaq[r]!=-1&&r<=n)
{
r++;
}
r++;
dp[l][0]=0;
dp[l][1]=10000000000000007;
for(int i=l;i<=r;i++)
{
if(i+1<=r)//跳一步
{
dp[i+1][0]=min(dp[i+1][0],dp[i][0]+1ll);
dp[i+1][1]=min(dp[i+1][1],dp[i][1]+1ll);
}
if(i+2<=r)//跳两步
{
dp[i+2][1]=min(dp[i+2][1],min(dp[i][0],dp[i][1])+qaq[i]);
}
}
ans+=dp[r][1];
}
printf("%lld\n",ans);
return 0;
}
</code></pre>
<h3 id="总结-4">总结:</h3>
<p>本来把问题想象成了</p>
<blockquote>
<p>删去一张图中若干条联通了 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>1</mn></mrow><annotation encoding="application/x-tex">1</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.64444em;vertical-align:0em;"></span><span class="mord">1</span></span></span></span> 和 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mi>n</mi></mrow><annotation encoding="application/x-tex">n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.43056em;vertical-align:0em;"></span><span class="mord mathdefault">n</span></span></span></span> 的边,使得边权之和最小且剩下的图仍然联通。</p>
</blockquote>
<p>结果发现不太可做。</p>
<p>然后发现其实是一道 dp。</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[2020年男人八题赛后订正与总结]]></title>
<id>https://vipblog.github.io/maneight/</id>
<link href="https://vipblog.github.io/maneight/">
</link>
<updated>2020-09-13T08:53:51.000Z</updated>
<content type="html"><![CDATA[<h2 id="a-2020男人八题礼物">A. 【2020男人八题】礼物</h2>
<h3 id="考场代码100pts">考场代码:(100pts)</h3>
<pre><code class="language-cpp">#include<cstdio>
using namespace std;
long long Mod=1000000007;
int main()
{
long long n,m;
scanf("%lld%lld",&n,&m);
long long NN=n*(n-1)/2;
long long MM=m*(m-1)/2;
printf("%lld\n",((NN%Mod)*(MM%Mod)%Mod));
return 0;
}
</code></pre>
<p>这道题目考察 long long 的相关问题,注意随时取模就好了,考场上找规律大概 <span class="katex"><span class="katex-mathml"><math><semantics><mrow><mn>15</mn><mi>m</mi><mi>i</mi><mi>n</mi></mrow><annotation encoding="application/x-tex">15min</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.65952em;vertical-align:0em;"></span><span class="mord">1</span><span class="mord">5</span><span class="mord mathdefault">m</span><span class="mord mathdefault">i</span><span class="mord mathdefault">n</span></span></span></span> 才写好。算是挺签到的题目。</p>
<h2 id="b-2020男人八题序列">B. 【2020男人八题】序列</h2>
<h3 id="考场代码40pts">考场代码:(40pts)</h3>
<pre><code class="language-cpp">#include<cstdio>
using namespace std;
long long a[100005],b[100005],c[100005];
long long Abs(long long x)
{
if(x<0)return -x;
return x;
}
int main()
{
long long n,S;
long long sum=0;
long long dif=0;
scanf("%lld%lld",&n,&S);
for(int i=1;i<=n;i++)
{
scanf("%lld",&a[i]);
sum+=a[i];
}
for(int i=1;i<=n;i++)
{
scanf("%lld",&b[i]);
}
if(sum<S)
{
printf("-1\n");
return 0;
}
long long cnt=0;
for(int i=1;i<=n;i++)
{
if(b[i]<=a[i])
{
c[i]=b[i];
}
else
{
c[i]=a[i];
dif+=Abs(c[i]-b[i]);
}
cnt+=c[i];
}
if(cnt==S)
{
printf("%lld\n",dif);
for(int i=1;i<=n;i++)
{
printf("%lld ",c[i]);
}
printf("\n");
return 0;
}
dif=0;
if(cnt<S)
for(int i=1;i<=n;i++)
{
long long tmp=a[i]-c[i];
if(c[i]<a[i])
{
if(S-cnt>tmp)
{
c[i]=a[i];
dif+=Abs(c[i]-b[i]);
cnt+=tmp;
}
else
{
c[i]+=S-cnt;
dif+=Abs(c[i]-b[i]);
cnt=S;
}
}
if(cnt==S)
{
printf("%lld\n",dif);
for(int i=1;i<=n;i++)
{
printf("%lld ",c[i]);
}
printf("\n");
return 0;
}
}
dif=0;
for(int i=1;i<=n;i++)
{
int tmp=c[i];
if(c[i]<a[i])
{
if(cnt-S>tmp)
{
c[i]=0;
dif+=Abs(c[i]-b[i]);
cnt-=tmp;
}
else
{
c[i]-=cnt-S;
dif+=Abs(c[i]-b[i]);
cnt=S;
}
}
if(cnt==S)
{
printf("%lld\n",dif);
for(int i=1;i<=n;i++)
{
printf("%lld ",c[i]);
}
printf("\n");
return 0;
}
}
printf("-1\n");
return 0;
}
</code></pre>
<h2 id="赛后订正100pts">赛后订正:(100pts)</h2>
<pre><code class="language-cpp">#include<cstdio>
using namespace std;
long long a[100005],b[100005],c[100005];
long long abs(long long x)
{
if(x<0)return -x;
return x;
}
int main()
{
long long n,S;
scanf("%lld%lld",&n,&S);
long long sum=0;
for(long long i=1;i<=n;i++)
{
scanf("%lld",&a[i]);
sum+=a[i];
}
long long cnt=0;
for(long long i=1;i<=n;i++)
{
scanf("%lld",&b[i]);
if(b[i]>a[i])
{
c[i]=a[i];
}
else
c[i]=b[i];
cnt+=c[i];
}
if(sum<S)
{
printf("-1\n");
return 0;
}
long long flag=0;
for(long long i=1;i<=n;i++)
{
long long del;
if(cnt>S)
{
del=cnt-S;
if(del<c[i])
{
c[i]=c[i]-del;
flag=1;
break;
}
else
{
cnt-=c[i];
c[i]=0;
}
}
if(cnt<S)
{
del=S-cnt;
if(del<a[i]-c[i])
{
c[i]+=del;
flag=1;
break;
}
else
{
cnt+=a[i]-c[i];
c[i]=a[i];
}
}
if(cnt==S)
{
flag=1;
break;
}
}
if(flag==0)
{
printf("-1\n");
return 0;
}
long long res=0;
for(long long i=1;i<=n;i++)
{
res+=abs(c[i]-b[i]);
}
printf("%lld\n",res);
for(long long i=1;i<=n;i++)
{
printf("%lld ",c[i]);
}
printf("\n");
return 0;
}
</code></pre>
<p>考场上对于两种分情况的讨论头脑有些混沌了,导致犯了一些本不该犯的错误。</p>
<p>以后还是应该一边写一边在旁边注释一下,理清思路。</p>
<p>原来的时候在初始化 c 数组之后,修正的过程中直接计算答案了,就会导致一些本可以避免的错误。</p>
<p>这种答案的统计因为时间复杂度不高,所以类似的题目处理时最好最后统一搞。</p>
<h2 id="c-2020男人八题洪水">C. 【2020男人八题】洪水</h2>
<h3 id="赛时代码0pts">赛时代码:(0pts)</h3>
<pre><code class="language-cpp">#include<cstdio>
#include<algorithm>
using namespace std;
struct ben
{
long long x,y;
}a[10005];
long long cmp(const ben &a,const ben &b)
{
if(a.x==b.x)return a.y<b.y;
return a.x<b.x;
}
long long Abs(long long qaq)
{
if(qaq<0)return -qaq;
return qaq;
}
long long Max(long long qwq,long long qvq)
{
if(qwq>qvq)return qwq;
return qvq;
}
long long Min(long long qwq,long long qvq)
{
if(qwq<qvq)return qwq;
return qvq;
}
long long x[10005],y[10005];
int main()
{
long long W,H,n;
scanf("%lld%lld%lld",&W,&H,&n);
for(long long i=1;i<=n;i++)
{
scanf("%lld%lld",&a[i].x,&a[i].y);
}
//sort(a+1,a+n+1,cmp);
long long ans=0;
for(long long i=1;i<=n;i++)
{
long long tmp=2147483640000000;
for(long long j=1;j<=n;j++)
{
if(i==j)continue;
long long midx=(a[i].x+a[j].x)/2;
long long midy=(a[i].y+a[j].y)/2;
tmp=Min(tmp,Abs(midx-Min(a[i].x,a[j].x))+Abs(midy-Min(a[i].y,a[j].y)));
//prlong longf("tmp=%d\n",tmp);
//tmp=Min(tmp,zc);
//prlong longf("zc=%d\n",zc);
}
//prlong longf("tmp=%d\n",tmp);
if(tmp==2147483640000000)continue;//差点这句话就把等于写成了赋值。。。。。
ans=Max(ans,tmp);
}
printf("%lld\n",ans);
return 0;
}
</code></pre>
<h3 id="赛后订正10pts">赛后订正:(10pts)</h3>
<pre><code class="language-cpp">#include<cstdio>
#include<algorithm>
using namespace std;
struct ben
{
int x,y;
}a[10005];
struct qwq
{
int ls,g;
}d[10005];
int mp[10005];
int Abs(int x)
{
if(x<0)return -x;
return x;
}
int ba[10005];
int main()
{
int W,H,n;
scanf("%d%d%d",&W,&H,&n);
for(int i=1;i<=n;i++)
{
scanf("%d%d",&a[i].x,&a[i].y);
d[i].g=0;
}
for(int i=1;i<=n;i++)
{
if(d[i].g!=0)continue;
int tmp=2147483640,tag;
for(int j=i+1;j<=n;j++)
{
if((Abs(a[j].x-a[i].x)+Abs(a[j].y-a[i].y))/2<tmp)
{
tmp=(Abs(a[j].x-a[i].x)+Abs(a[j].y-a[i].y))/2;
tag=j;
}
}
d[i].ls=tmp;
d[i].g=tag;
d[tag].ls=tmp;
d[tag].g=i;
}
ba[1]=1;
int cnt=1;
mp[1]=1;
int ans=0;