QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#833311 | #9913. 绝顶之战 | zhenjianuo2025 | 60 | 814ms | 74192kb | C++20 | 2.7kb | 2024-12-26 17:06:29 | 2024-12-26 17:06:29 |
Judging History
answer
#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
bool Mbg;
using namespace std;
#define vec vector
#define pb push_back
#define eb emplace_back
#define siz(vec) ((int)(vec).size())
#define all(vec) (vec).begin(),(vec).end()
template<class T>
void operator +=(vec<T> &a,T b){a.push_back(b);}
template<class T>
void operator --(vec<T> &a){a.pop_back();}
#define pii pair<int,int>
#define x first
#define y second
#define mp make_pair
#define exc(exp) if(exp)continue;
#define stop(exp) if(exp)break;
#define ret(exp) if(exp)return;
#define deb(var) cerr<<#var<<'='<<(var)<<"; "
#define debl(var) cerr<<#var<<'='<<(var)<<";\n"
#define ins insert
#define era erase
#define lb lower_bound
#define int long long
#define inf (long long)(1e9)
template<class T>
bool Min(T &x,T y){return x>y?x=y,1:0;}
template<class T>
bool Max(T &x,T y){return x<y?x=y,1:0;}
const int mod=998244353;
void Add(int &x,int y){x=x+y<mod?x+y:x+y-mod;}
void Dec(int &x,int y){x=x>=y?x-y:x-y+mod;}
int fpm(int x,int y){
int ans=1;for(;y;y>>=1,(x*=x)%=mod)if(y&1)(ans*=x)%=mod;return ans;
}
int n,m,a[16];
map<int,bool> ans;
map<vec<pii>,bool> f[16];
void dfs(int i,int s,vec<pii> v){
ret(s>m);
ret(siz(v)>i+1);
if(ans.find(s)!=ans.end())return;
if(i==0){
if(siz(v)==1&&v[0].x>m){
ans[s]=1;
}
return;
}
int t=0;
for(auto x:v){
t+=x.x;
}
for(int j=i;j;j--)t+=a[j];
ret(t<=m);
sort(all(v));
if(f[i].find(v)!=f[i].end())return;
f[i][v]=1;
auto w=v;
bool fl=1;
for(auto &x:w){
if(x.y>=a[i]){
fl=0;
break;
}
Min(x.x,a[i]);
}
if(fl)dfs(i-1,s,w);
for(int x=0;x<siz(v);x++){
for(int y=x+1;y<siz(v);y++){
vec<pii> w;
for(int k=0;k<siz(v);k++)
if(k!=x&&k!=y)w+=v[k];
w+={v[x].x+v[y].x+a[i],v[x].y+v[y].y+a[i]};
dfs(i-1,s+a[i],w);
}
}
}
void work(){
cin>>m>>n;
for(int i=1;i<=n;i++){
cin>>a[i];
}
vec<pii> v;
for(int i=1;i<=n+1;i++){
v+={m+1,0ll};
dfs(n,0,v);
}
// sort(all(ans));
// ans.era(unique(all(ans)),ans.end());
cout<<siz(ans)<<'\n';
for(auto x:ans)cout<<x.x<<' ';
}
bool Med;
signed main(){
ios::sync_with_stdio(0),
cin.tie(0),cout.tie(0);
int T=1;while(T--)work();
// cerr<<"Time: "<<clock()<<" ms;\n";
// cerr<<"Memory: "<<abs(&Med-&Mbg)/1024.0/1024.0<<" MiB.\n";
}
/*
- CONTINUE, NON-STOPPING, FOR THE FAITH
- START TYPING IF YOU DON'T KNOW WHAT TO DO
- STOP TYPING IF YOU DON'T KNOW WHAT YOU'RE DOING
*/
詳細信息
Subtask #1:
score: 15
Accepted
Test #1:
score: 15
Accepted
time: 1ms
memory: 3564kb
input:
9 5 5 4 5 3 5
output:
3 5 8 9
result:
ok 4 number(s): "3 5 8 9"
Test #2:
score: 15
Accepted
time: 0ms
memory: 3568kb
input:
10 5 7 4 5 4 6
output:
1 7
result:
ok 2 number(s): "1 7"
Test #3:
score: 15
Accepted
time: 0ms
memory: 3860kb
input:
9 5 8 4 3 5 6
output:
1 8
result:
ok 2 number(s): "1 8"
Test #4:
score: 15
Accepted
time: 0ms
memory: 3532kb
input:
10 5 6 6 5 4 5
output:
2 6 10
result:
ok 3 number(s): "2 6 10"
Test #5:
score: 15
Accepted
time: 0ms
memory: 3564kb
input:
10 5 6 6 5 3 4
output:
2 6 9
result:
ok 3 number(s): "2 6 9"
Subtask #2:
score: 5
Accepted
Test #6:
score: 5
Accepted
time: 0ms
memory: 3564kb
input:
9146201596026093 2 1959292328727211 3046691025174768
output:
1 5005983353901979
result:
ok 2 number(s): "1 5005983353901979"
Test #7:
score: 5
Accepted
time: 0ms
memory: 3616kb
input:
9275681991750590 2 5186569060202341 3113841469169509
output:
2 5186569060202341 8300410529371850
result:
ok 3 number(s): "2 5186569060202341 8300410529371850"
Test #8:
score: 5
Accepted
time: 0ms
memory: 3564kb
input:
9401675366106951 2 149091771205127 6947611558612479
output:
2 149091771205127 7096703329817606
result:
ok 3 number(s): "2 149091771205127 7096703329817606"
Test #9:
score: 5
Accepted
time: 0ms
memory: 3844kb
input:
9392557811857168 2 160423759804827 7346645029161642
output:
2 160423759804827 7507068788966469
result:
ok 3 number(s): "2 160423759804827 7507068788966469"
Test #10:
score: 5
Accepted
time: 0ms
memory: 3500kb
input:
9822837057566509 2 108146351103958 7480790958348985
output:
2 108146351103958 7588937309452943
result:
ok 3 number(s): "2 108146351103958 7588937309452943"
Subtask #3:
score: 5
Accepted
Test #11:
score: 5
Accepted
time: 0ms
memory: 3820kb
input:
9107037180352846 3 2775941126614211 2097129959011760 1941377836547846
output:
2 4873071085625971 6814448922173817
result:
ok 3 number(s): "2 4873071085625971 6814448922173817"
Test #12:
score: 5
Accepted
time: 0ms
memory: 3852kb
input:
9356790767702598 3 5546180935211679 2905945428392309 1761953813389806
output:
2 7308134748601485 8452126363603988
result:
ok 3 number(s): "2 7308134748601485 8452126363603988"
Test #13:
score: 5
Accepted
time: 0ms
memory: 3484kb
input:
9850427814943989 3 142199778279844 6707702417646007 5098690319392154
output:
3 142199778279844 5240890097671998 6849902195925851
result:
ok 4 number(s): "3 142199778279844 5240890097671998 6849902195925851"
Test #14:
score: 5
Accepted
time: 0ms
memory: 3620kb
input:
9289721094295218 3 158922512595425 6720813049590970 5533326304480556
output:
3 158922512595425 5692248817075981 6879735562186395
result:
ok 4 number(s): "3 158922512595425 5692248817075981 6879735562186395"
Test #15:
score: 5
Accepted
time: 0ms
memory: 3856kb
input:
9089829946377332 3 153331859334767 6955566390185762 5391139066021841
output:
3 153331859334767 5544470925356608 7108898249520529
result:
ok 4 number(s): "3 153331859334767 5544470925356608 7108898249520529"
Subtask #4:
score: 5
Accepted
Test #16:
score: 5
Accepted
time: 1ms
memory: 3640kb
input:
9035514376902827 5 1861522865446152 1901640741231313 2239047273044626 2596933481542076 2408801444166990
output:
4 3763163606677465 6002210879722091 8411012323889081 8599144361264167
result:
ok 5 number(s): "4 3763163606677465 60022108797...11012323889081 8599144361264167"
Test #17:
score: 5
Accepted
time: 1ms
memory: 3648kb
input:
9720759307951601 5 5245904226180530 3078325181926984 1664005610640026 897140663439037 545770017429336
output:
5 7807050500259593 8324229408107514 8352820517688929 8869999425536850 9221370071546551
result:
ok 6 numbers
Test #18:
score: 5
Accepted
time: 0ms
memory: 3628kb
input:
9914984513811788 5 143280160480180 109619234770197 6890320393268943 5403376030977054 4137173786378446
output:
5 252899395250377 4390073181628823 5656275426227431 7143219788519320 9793449212605877
result:
ok 6 numbers
Test #19:
score: 5
Accepted
time: 1ms
memory: 3564kb
input:
9759176874761010 5 133219343571190 120466941665747 6704653967672701 5571405145717257 4167138211880141
output:
4 253686285236937 4420824497117078 5825091430954194 6958340252909638
result:
ok 5 number(s): "4 253686285236937 442082449711...25091430954194 6958340252909638"
Test #20:
score: 5
Accepted
time: 1ms
memory: 3852kb
input:
9525506737874968 5 148963131354572 158578418411159 6828452733024137 5381364252000234 4049653682935737
output:
4 307541549765731 4357195232701468 5688905801765965 7135994282789868
result:
ok 5 number(s): "4 307541549765731 435719523270...88905801765965 7135994282789868"
Subtask #5:
score: 5
Accepted
Test #21:
score: 5
Accepted
time: 1ms
memory: 3528kb
input:
9023163981511792 7 1910131726862762 2116561201938147 2221366112235172 2543084904983947 2627118050952859 1894287864736168 2673898998406780
output:
5 4026692928800909 5920980793537077 6248059041036081 8142346905772249 8791143946020028
result:
ok 6 numbers
Test #22:
score: 5
Accepted
time: 1ms
memory: 3740kb
input:
9201962815585483 7 5414508209828189 3093292941553917 1685274817103741 948835864411768 509817155946068 281984678231046 159476022063405
output:
11 8051060883172449 8490079591638149 8558436047289766 8667277173445511 8717912069353171 8789785829613152 8840420725520812 8949261851676557 8999896747584217 9017618307328174 9177094329391579
result:
ok 12 numbers
Test #23:
score: 5
Accepted
time: 1ms
memory: 3592kb
input:
9826610363201771 7 162505577758383 135338647957173 6721075735733948 5272016953171334 3778424372952824 2933545141068482 2192801947755330
output:
11 4076268598668380 5424191314539368 5569861178886890 6269070546423710 7009813739736862 7018919961449504 7762663126642220 8503406319955372 9202615687492192 9211721909204834 9348285551839714
result:
ok 12 numbers
Test #24:
score: 5
Accepted
time: 1ms
memory: 3584kb
input:
9130499502023512 7 155672196353335 159186169334854 143660830359863 7428948651751866 5151447515782955 3798505869621088 3051456865715739
output:
7 458519196048052 3509976061763791 4257025065669140 5609966711831007 7308481931384879 7887467847799918 8661423577546746
result:
ok 8 numbers
Test #25:
score: 5
Accepted
time: 1ms
memory: 3592kb
input:
9787957086564562 7 187238348793225 123717981911599 129684193048160 6696615131438344 5283070868135540 3906283631465365 2886113099800319
output:
8 440640523752984 3326753623553303 4346924155218349 5723711391888524 7137255655191328 7233037255018668 8609824491688843 9629995023353889
result:
ok 9 numbers
Subtask #6:
score: 5
Accepted
Test #26:
score: 5
Accepted
time: 1ms
memory: 3704kb
input:
9843534281138117 9 2077071368628181 2828099538983996 3196114494343630 3055890563571162 2057088847509186 2194463607939255 2091779370708588 3167995993737888 2800516708286895
output:
6 4905170907612177 6962259755121363 7961061471183339 8101285401955807 9054039125829951 9156723363060618
result:
ok 7 numbers
Test #27:
score: 5
Accepted
time: 4ms
memory: 4876kb
input:
9089321288577479 9 5013478738969552 3157961240306159 1653601571668037 995106965792662 547346063380849 294963106466152 160268607573676 93635792107328 51921499739784
output:
17 7815215379905378 8262976282317191 8515359239231888 8650053738124364 8678593193055323 8716686553590712 8758400845958256 8770707542396344 8772228985162651 8810322345698040 8864343334503672 8879054650230236 8930976149970020 8972690442337564 9013749149122712 9024611942077348 9065670648862496
result:
ok 18 numbers
Test #28:
score: 5
Accepted
time: 1ms
memory: 3648kb
input:
9228466779362818 9 138297550369877 130923331965746 6781722444706425 5322544847732556 4066738295445476 3069444036943107 2164702704009501 1770338045202555 1190140118936057
output:
23 5394401750483736 5503367623288231 5591765730068179 6500661881790600 6693507742224288 6781905849004236 7050943327042048 7273705668490786 7296437341919711 7362103775270734 7405403214724206 7690802000726657 7756468434077680 8241083445978105 8270999926993155 8463845787426843 8552243894206791 85955433...
result:
ok 24 numbers
Test #29:
score: 5
Accepted
time: 1ms
memory: 3728kb
input:
9212737112748513 9 183955156420715 137274489671458 114555376485976 6952502804268520 5522728516286281 4030640330044608 2854429096629358 2316695709170732 1632544471040460
output:
18 2068329493618609 3290214119207507 4385025202789341 4466425352622757 4922758590247967 5606909828378239 5958513538864430 6098969823663217 6783121061793489 7239454299418699 7320854449252115 7388287826846669 7591058009904890 8275209248035162 8415665532833949 8812942635493788 8953398920292575 90208322...
result:
ok 19 numbers
Test #30:
score: 5
Accepted
time: 1ms
memory: 3656kb
input:
9252713525210010 9 162740017680509 127023684986275 155152778412278 175338690039624 7412436877077191 5091441554206713 4090942515178659 3126367996844513 2202317580662331
output:
11 620255171118686 2822572751781017 3746623167963199 4711197686297345 5711696725325399 5948940748625530 6913515266959676 7837565683141858 7914014305987730 8032692048195877 8838064722169912
result:
ok 12 numbers
Subtask #7:
score: 10
Accepted
Test #31:
score: 10
Accepted
time: 2ms
memory: 4056kb
input:
9431564240371856 11 2072502046158126 2066316271517661 2163529290633843 2033552924777258 2060295112538633 2170963915845858 2830153069449699 2750192266102216 2436460356484587 2070428523960501 2346826281628005
output:
5 4138818317675787 6172371242453045 6302347608309630 8232666354991678 8335900533086888
result:
ok 6 numbers
Test #32:
score: 10
Accepted
time: 151ms
memory: 21700kb
input:
9748017886882097 11 5621106261846239 2963693598568387 1770987181252029 893130050604348 502107706153055 286239930406429 177406459478434 98736836706145 50305470562766 29068874911746 16153459380560
output:
35 8943134525148696 9159002300895322 9242710891860706 9267835771823317 9281172208128898 9346505394595606 9394936760738985 9445242231301751 9458578667607332 9468675301829182 9517106667972561 9567412138535327 9573457715874046 9595776290744850 9617012886395870 9621889082017425 9629928301927056 96431256...
result:
ok 36 numbers
Test #33:
score: 10
Accepted
time: 9ms
memory: 4684kb
input:
9729347332638556 11 163205101237135 138624963742945 7383174429729118 5444520240796106 4096476332219865 2816505442061853 2326400497103976 1738089722146197 1209769283839695 998817076886274 681867756759546
output:
60 6654505287985604 7182825726292106 7214811839261798 7336373044745150 7346165403185837 7427035139422006 7484440027922383 7637987346375427 7653322364871878 7685004494709198 7723523971190195 7864693483051652 7896679596021344 7934476178143616 7954936666502155 8028033159945383 8072750802880162 81663077...
result:
ok 61 numbers
Test #34:
score: 10
Accepted
time: 6ms
memory: 4272kb
input:
9562754215575569 11 161485396106512 149434616709912 146002147507153 7382000408536557 5057907834305831 4172105824491835 2954718800198612 2331161721531018 1679290402557369 1327100836040863 958505415004628
output:
46 4421818813926437 5514829994629408 5697247211567680 5742802682053207 5794475120452827 6049436778084186 6308318387372781 6418032199120421 6473335409634036 6701308097057835 6752980535457455 6841930830670271 6914634235860903 6960189706346430 7069903518094070 7194120397186777 7266823802377409 73765376...
result:
ok 47 numbers
Test #35:
score: 10
Accepted
time: 4ms
memory: 4280kb
input:
9194213030272623 11 151203400846131 124120452633619 125742788205690 163158396087644 7018622412796568 5193669265366797 4128466957224227 2835843673808823 2174592423658379 1749173457831955 1298726481658321
output:
30 1862951519431405 3400068711581907 3612124977263360 4037543943089784 4487990919263418 4692691994997311 4698795193240228 5149242169413862 5574661135240286 5757894303139881 5786717400921739 5991418476655632 6441865452829266 6447968651072183 6867284418655690 6873387616898607 7056620784798202 73238345...
result:
ok 31 numbers
Subtask #8:
score: 10
Accepted
Test #36:
score: 10
Accepted
time: 3ms
memory: 3860kb
input:
9205033666499013 12 2850462003249404 2805242660077069 2429054981777503 2963815386637346 2482550367349595 1986471485219802 2520994127845999 2437529223970625 2627469170446910 1921642320209105 2645728927620059 2290578758228158
output:
4 5655704663326473 7577346983535578 7642176148546275 8084759645103976
result:
ok 5 number(s): "4 5655704663326473 75773469835...42176148546275 8084759645103976"
Test #37:
score: 10
Accepted
time: 814ms
memory: 74192kb
input:
9312008144548179 12 5098312777552324 2828210584202914 1698846116084863 972763022136388 536323112196116 296239601985823 168374174447656 95736456798989 55681139272124 31357956485449 16061655649327 9384457843970
output:
37 8442757358256913 8599358804238576 8682840868467206 8810706296005373 8839442314448869 8883344013654040 8923399331180905 8967307741987036 8979080470453029 9039945459635703 9080000777162568 9104323959949243 9107508049941485 9124464628318028 9135681916434692 9180145767590152 9188843128631568 92202010...
result:
ok 38 numbers
Test #38:
score: 10
Accepted
time: 25ms
memory: 6508kb
input:
9156085216063046 12 123047715954567 102070372364803 6915592549395858 5255619619792358 3803494030028777 3144753698528503 2201976837739733 1637371070914506 1246360406659115 942243938371027 740235765048371 549861629651347
output:
92 5860688033284071 6253070342003751 6600923798332442 6780450585739227 6802931971655098 6912343595921768 6970824721136251 6993306107052122 7118108779026234 7140710637715228 7172832894458907 7173365816876650 7209219695502112 7276959744422190 7368070660898068 7462205225573115 7467333879819214 74769493...
result:
ok 93 numbers
Test #39:
score: 10
Accepted
time: 14ms
memory: 5172kb
input:
9286877881168289 12 160985053204177 100889151079338 118274510570377 7069745807992134 5000997579129201 4029329896631094 2864807840694241 2289538705919012 1777932458904240 1314987331906972 995766127923476 716515790394942
output:
75 5185350423983522 5534495261467145 5762607211584116 6097662084378035 6121760529803404 6251011051862087 6272225805773523 6337876346359345 6376912421906569 6479123001979058 6530261389390621 6696133625890065 6699017317403998 6720232071315434 6735170932770791 6758373339507592 6849482593374117 69039268...
result:
ok 76 numbers
Test #40:
score: 10
Accepted
time: 11ms
memory: 5056kb
input:
9418852853476875 12 160943007964367 114061835195663 176210220688578 150735166859030 6891091613133140 5165951633912061 4103315397738327 2853067598258136 2133396328555547 1588140275356272 1272833769324109 954169504156861
output:
52 4409187333122635 4417093779544880 4705265628445965 4962349832744155 5043158104322046 5277656338776318 5588414157521321 5596320603943566 5659435132602826 5682021102446744 5767901864619699 5978099397770074 5997327608478907 6293405903802237 6315991873646155 6542583661678182 6550490108100427 67220713...
result:
ok 53 numbers
Subtask #9:
score: 0
Time Limit Exceeded
Test #41:
score: 10
Accepted
time: 3ms
memory: 3800kb
input:
9386101775874151 13 2988434015746527 2531638596517047 2952017129004226 2532501379103299 2134686632728924 2723134092613376 2734705006477432 2790707225133977 2417142090510094 2242777209869653 2707931539021407 2508571481588074 2833570313484694
output:
4 5520072612263574 7654759244992498 8052573991366873 8472089741267800
result:
ok 5 number(s): "4 5520072612263574 76547592449...52573991366873 8472089741267800"
Test #42:
score: 0
Time Limit Exceeded
input:
9168182173116105 13 5245945745965630 2966339978381958 1587236525258288 896003981667415 529285939890159 293959638682944 169587396142065 91544716767044 52705601201500 28282607177863 17370633326495 9113216610963 5470267979344
output:
result:
Subtask #10:
score: 0
Time Limit Exceeded
Test #46:
score: 30
Accepted
time: 7ms
memory: 4124kb
input:
9001324849976175 14 2825925335672803 2025589127489736 2269614904415361 1837491879093462 2158539836494236 2426078823971452 1924825856346157 2746394845754343 2268412247933575 2230951690565408 2494052463977166 2855920747842645 2234733913430870 2001499177846439
output:
6 4851514463162539 6689006342256001 7121129367577900 8613832198602158 8847546178750237 8958621246671362
result:
ok 7 numbers
Test #47:
score: 0
Time Limit Exceeded
input:
9972282568532949 14 5505337530293470 3041608956429561 1641948100087404 921229203322626 522006830353828 305104880869052 169979965880291 98139538460294 50438074200129 30572008666021 16022716436664 9778663336212 5597214430013 3030746040166