-
个人简介
绿蓝勾的下限是负分。
#include<bits/stdc++.h> using namespace std; template<typename T>void gmx(T &x,T y){x=max(x,y);} template<typename T>void gmn(T &x,T y){x=min(x,y);} template<typename T>void read(T&x){x=0;int f=1;char c=getchar();for(;c<'0'||c>'9';c=getchar())if(c=='-')f=-f;for(;c>='0'&&c<='9';c=getchar())x=x*10+c-'0';x*=f;} template<int P>class mod_int{using Z=mod_int;private:static int mo(int x){return x<0?x+P:x;}public:int x;int val()const{return x;}mod_int():x(0){}template<class T>mod_int(const T&x_):x(x_>=0&&x_<P?static_cast<int>(x_):mo(static_cast<int>(x_%P))){}bool operator==(const Z&rhs)const{return x==rhs.x;}bool operator!=(const Z&rhs)const{return x!=rhs.x;}Z operator-()const{return Z(x?P-x:0);}Z pow(long long k)const{Z res=1,t=*this;while(k){if(k&1)res*=t;if(k>>=1)t*=t;}return res;}Z&operator++(){x<P-1?++x:x=0;return*this;}Z&operator--(){x?--x:x=P-1;return*this;}Z operator++(int){Z ret=x;x<P-1?++x:x=0;return ret;}Z operator--(int){Z ret=x;x?--x:x=P-1;return ret;}Z inv()const{return pow(P-2);}Z&operator+=(const Z&rhs){(x+=rhs.x)>=P&&(x-=P);return*this;}Z&operator-=(const Z&rhs){(x-=rhs.x)<0&&(x+=P);return*this;}Z operator-(){return-x;}Z&operator*=(const Z&rhs){x=1ULL*x*rhs.x%P;return*this;}Z&operator/=(const Z&rhs){return*this*=rhs.inv();} #define setO(T,o)friend T operator o(const Z&lhs,const Z&rhs){Z res=lhs;return res o##=rhs;} setO(Z,+)setO(Z,-)setO(Z,*)setO(Z,/) #undef setO friend istream&operator>>(istream&is,mod_int&x){long long tmp;is>>tmp;x=tmp;return is;}friend ostream&operator<<(ostream&os,const mod_int&x){os<<x.val();return os;}}; void solve() { } int main() { int t;cin>>t;while(t--) solve(); return 0; }
-
通过的题目
- P1
- P2
- P3
- P4
- P5
- P6
- P7
- P8
- P9
- P10
- P11
- P12
- P13
- P14
- P15
- P16
- P17
- P18
- P19
- P20
- P21
- P22
- P23
- P24
- P25
- P26
- P27
- P28
- P29
- P30
- P31
- P32
- P33
- P34
- P35
- P36
- P37
- P38
- P39
- P40
- P41
- P42
- P43
- P44
- P45
- P46
- P47
- P48
- P49
- P50
- P51
- P52
- P53
- P54
- P55
- P60
- P64
- P70
- P71
- P75
- P76
- P78
- P79
- P80
- P81
- P87
- P90
- P91
- P92
- P93
- P94
- P95
- P96
- P97
- P98
- P99
- P100
- P101
- P102
- P103
- P104
- P105
- P106
- P107
- P108
- P109
- P110
- P111
- P112
- P113
- P114
- P115
- P116
- P117
- P118
- P120
- P121
- P122
- P123
- P124
- P125
- P126
- P127
- P128
- P129
- P130
- P131
- P132
- P133
- P134
- P135
- P136
- P137
- P138
- P139
- P141
- P142
- P143
- P144
- P145
- P146
- P147
- P148
- P149
- P150
- P151
- P152
- P153
- P154
- P155
- P156
- P157
- P158
- P159
- P160
- P161
- P162
- P163
- P164
- P165
- P166
- P167
- P168
- P169
- P170
- P171
- P172
- P173
- P174
- P175
- P176
- P177
- P178
- P179
- P180
- P181
- P182
- P183
- P184
- P187
- P188
- P190
- P191
- P192
- P193
- P194
- P195
- P196
- P197
- P198
- P199
- P200
- P201
- P202
- P203
- P204
- P220
- P221
- P227
- P237
- P238
- P243
- P262
- P278
- P306
- P309
- P317
- P318
- P319
- P320
- P321
- P325
- P326
- P327
- P328
- P329
- P330
- P331
- P334
- P335
- P336
- P337
- P340
- P344
- P350
- P353
- P354
- P355
- P356
- P357
- P358
- P359
- P360
- P361
- P362
- P363
- P364
- P365
- P366
- P367
- P368
- P369
- P370
- P371
- P372
- P373
- P374
- P376
- P380
- P382
- P385
- P394
- P417
- P438
- P453
- P454
- P455
- P456
- P461
- P462
- P464
- P465
- P466
- P467
- P468
- P470
- P471
- P472
- P473
- P474
- P475
- P476
- P477
- P478
- P479
- P480
- P482
- P483
- P484
- P485
- P486
- P487
- P488
- P489
- P490
- P491
- P504
- P511
- P514
- P515
- P530
- P531
- P533
- P534
- P535
- P536
- P540
- P541
- P542
- P543
- P544
- P546
- P548
- P549
- P551
- P553
- P555
- P557
- P566
- P567
- P569
- P572
- P575
- P576
- P577
- P579
- P580
- P581
- P582
- P583
- P584
- P585
- P587
- P588
- P589
- P590
- P591
- P592
- P597
- P598
- P599
- P600
- P601
- P610
- P611
- P612
- P613
- P615
- P616
- P617
- P618
- P619
- P620
- P621
- P622
- P623
- P624
- P626
- P627
- P628
- P629
- P631
- P632
- P634
- P635
- P636
- P637
- P638
- P639
- P640
- P643
- P644
- P645
- P646
- P647
- P656
- P657
- P658
- P668
- P669
- P670
- P672
- P673
- P674
- P675
- P676
- P677
- P678
- P679
- P709
- P712
- P713
- P714
- P715
- P716
- P717
- P718
- P719
- P720
- P721
- P722
- P723
- P763
- P764
- P765
- P766
- P772
- P791
- P810
- P811
- P822
- P823
- P897
- P898
- P899
- P900
- P901
- P902
- P903
- P904
- P905
- P906
- P956
- P957
- P958
- P959
- P960
- P961
- P1106
- P1107
- P1108
- P1109
- P1110
- P1111
- P1128
- P1136
- P1220
- P1221
- P1222
- P1223
-
最近活动
- [CZR-015] CZOJ Weekly Exercise Round 15——Where is R14? IOI
- [CZR-013] CZOJ Weekly Exercise Round 13——七夕情人节 IOI
- [CZR-012] CZOJ Weekly Exercise Round 12——The Easiest Round IOI
- [CZR-011] CZOJ Weekly Exercise Round 11 IOI
- [CZR-010] CZOJ Weekly Exercise Round 10 IOI
- zc初级班作业10 作业
- [CZR-009] CZOJ Weekly Exercise Round 9 IOI
- [CZR-008] CZOJ Weekly Exercise Round 8 IOI
- [CZR-007] CZOJ Weekly Exercise Round 7 IOI
- [CZR-006] CZOJ Weekly Exercise Round 6 with BPOJ IOI
- [CZR-005] CZOJ Weekly Exercise Round 5 IOI
- [CZR-004] CZOJ Weekly Exercise Round 4——HLS Round!!! IOI
- [CZR-003] CZOJ Weekly Exercise Round 3 IOI
- [CZR-002] CZOJ Weekly Exercise Round 2 IOI
- [CZR-001] CZOJ Weekly Exercise Round 1 IOI
- [CZR-000-VP] 常州市程序设计小能手 2023 IOI
- 20230316分块 作业
- 分支综合作业 作业
- 分支嵌套课后作业 作业
题目标签
- 来源
- 65
- 算法基础
- 64
- 时间
- 63
- 数据结构
- 55
- 动态规划
- 35
- 数学
- 29
- 模拟
- 22
- 2023
- 19
- USACO
- 19
- 常州小学生市赛
- 19
- 图论
- 19
- CSP-J
- 15
- 特殊题目
- 14
- 模板题
- 14
- 递归
- 14
- 枚举
- 13
- 字符串
- 11
- 树
- 11
- 贪心
- 11
- 图
- 11