-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
executable file
·710 lines (695 loc) · 13.8 KB
/
main.cpp
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
#include<bits/stdc++.h>
#include"cum_sum.h"
#include"cum_sum_3D.h"
#define format(q) setprecision(q)
#define F first
#define S second
#define PB push_back
#define MP make_pair
#define REP1(i,a,b) for (int i = a; i <= b; i++)
#define REP0(i,a,b) for (int i = a; i < b; i++)
using namespace std;
typedef vector<int> vi;
typedef vector<double>vd;
typedef vector<float>vf;
typedef vector<long long>vll;
const double pi=22.0/7.0;
const int MX=(int)((1e3))+5;
const int OOpos =(int)1e6;
const int OOneg =((int)(1e6))*-1;
const double eps=1.0/(1e7);
long long n,m;
int x,y,w;
int W[MX],p[MX];
int DP[MX][MX];
int ans[MX][MX];
vector<vector<char>> grid(MX+6,vector<char>(MX+6,'c'));
vector<vector<vector<char>>>g (MX,vector<vector<char>>(MX,vector<char>(MX,'c')));
/*
memset with vector
memset(v[0],-1,(int)v.size())
*/
char maper[27]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
char num_char_map[11]={'0','1','2','3','4','5','6','7','8','9'};
/*
int c=num_char_map[i]-'0';
cout<<c;->i
*/
///4 direction
int dirx4[] = {0,0,-1,1};
int diry4[] = {-1,1,0,0};
///8 directions
int dirx8[]={0,0,1,-1,1,-1,1,-1};
int diry8[]={1,-1,0,0,1,-1,-1,1};
int adj[MX][MX];
int prv[MX][MX];
int dp[MX][MX];
///unweighted edge list
struct unweightedge
{
int s,d;
unweightedge(int s,int d)
{
this->s=s;
this->d=d;
}
};
///weighted edge list
struct edgeweighted
{
int src,des,weig;
edgeweighted(int src,int des,int weig)
{
this->src=src;
this->des=des;
this->weig=weig;
}
};
int knapsack(int i,int r)
{
if(i==n)
{
return 0;
}
if(DP[i][r]!=-1)
{
return DP[i][r];
}
if(W[i]>r)
{
DP[i][r]=knapsack(i+1,r);/// leave the item
}
else
{
DP[i][r]=max(knapsack(i+1,r-W[i])+p[i],knapsack(i+1,r));///take the item
}
return DP[i][r];
}
int LCS(int i,int j,string &x,string &y)
{
if(i==(int)x.size()||j==(int)y.size())
return 0;
if(dp[i][j]!=-1)
return dp[i][j];
if(x[i]==y[j])
return dp[i][j]=LCS(i+1,j+1,x,y)+1;
return dp[i][j]=max(LCS(i,j+1,x,y),LCS(i+1,j,x,y));
}
int sumDigits(int x)
{
if (x == 0) {
return 0;
}
return (x % 10) + sumDigits(x / 10);
}
/*
give vector of vector a size of outside vector and inside vector
*/
///in the grid
bool in(int &i,int &j,int &n)
{
if(i>=0&&j>=0&&i<n&&j<n)
{
return true;
}
else
{
return false;
}
}
/// 1D range sum 1 based array
int range_sum(int s,int e,vector<int> &pref)
{
return pref[e]-pref[s-1];
}
///Sieve prime factorization
void sieve (int p,vector<int> sieve)
{
int n=(int)sieve.size();
memset(&sieve[0],1,n);
sieve[0]=sieve[1]=0;
for(int i=2;i*i<=p;i++)
{
if(sieve[i])
{
for(int j=i*i;j<=p;j+=i)
{
sieve[j]=false;
}
}
}
}
///BINARY_SEARCH
int BINARY_SEARCH_recursive(long long k,int low,int high,vector<long long> &a)
{
if(high<low)
{
return -1;
}
else
{
int mid=low+(high-low)/2;
if(a[mid]>k)
{
return BINARY_SEARCH_recursive(k,low,mid-1,a);
}
else if(a[mid]<k)
{
return BINARY_SEARCH_recursive(k,mid+1,high,a);
}
else
{
return mid;
}
}
}
int BINARY_SEARCH_iterative(long long k,int low,int high,vector<long long> &a)
{
while(high>=low)
{
int mid=low+(high-low)/2;
if(a[mid]<k)
{
low=mid+1;
}
else if(a[mid]>k)
{
high=mid-1;
}
else
{
return mid;
}
}
return -1;
}
///GCD
int gcd(int x,int y)
{
if(y==0)
{
return x;
}
return gcd(y,x%y);
}
/*
get the result of a power p
*/
int Pow(int a,int p)
{
if(p==0)
{
return 1;
}
int sq=Pow(a,p/2);
if(p%2==1)
{
sq=sq*a;
}
return sq;
}
bool Isprime(int &n)
{
if(n<2)
{
return 0;
}
for(int i=2;i*i<=n;i++)
{
if(n%i==0)
{
return 0;
}
}
return 1;
}
///bit=1 count
int bitcount(int x)
{
int c=0;
while(x)
{
x&=(x-1);
c++;
}
return c;
}
///dijkstra
struct edge{
int from,w,to;
edge(int from,int to,int w)
{
this->from=from;
this->to=to;
this->w=w;
}
bool operator <(const edge &e) const
{
return w>e.w;
}
};
int dijkstra2(vector<vector<edge>> &adj,int s,int d=-1)
{
int sz=(int)adj.size();
vector<int>dis(sz+2,OOpos);
vector<int>prev(sz+2,-1);
dis[s]=0;
priority_queue<edge>q;
q.push(edge(-1,s,0));
while(!q.empty())
{
edge e=q.top();
int cur_to=e.to,cur_from=e.from,cur_w=e.w;
q.pop();
if(cur_w>dis[cur_to])
{
continue;
}
prev[cur_to]=cur_from;
for(int j=0;j<(int)adj[cur_to].size();j++)
{
edge f=adj[cur_to][j];
int to=e.to,from=e.from,w=e.w;
if(dis[to]>dis[from]+w)
{
f.w=dis[to]=dis[from]+w;
q.push(f);
}
}
}
if(d==-1)
{
return -1;
}
return dis[d];
}
vector<int> dijkstra(long long &sr,long long &des,vector<vector<pair<long long,long long>>> &adj,long long &sz)///pair in adj is <node,weight>
{
vector<int>par(sz+4,-1);
vector<int>dis(sz+1,-1);
set<pair<int,int>>s;///<total weight , node>
s.insert({0,sr});
while(!s.empty())
{
pair<int,int>p=*(s.begin());
s.erase(p);
int nod=p.second;
int cost=p.first;
if(dis[nod]!=-1)
{
continue;
}
dis[nod]=cost;
for(int i=0;i<(int)adj[nod].size() ; i++)
{
pair<int,int>k=adj[nod][i];
if(dis[k.first]==-1)
{
par[k.first]=nod;
s.insert({cost+k.second,k.first});
}
}
}
return dis;
vector<int>path;
path.push_back(des);
long long x=des;
while(x!=sr)
{
x=par[x];
path.push_back(x);
}
reverse(path.begin(),path.end());
return path;
}
///build path
void path(int i,int j)
{
if(i!=j)
{
path(i,prv[i][j]);
}
cout<<j<<" ";
}
///DFS
void dfs_with_for_each_loop(int &s,vector<vector<int>> &adj,vector<int> &vis)
{
if(vis[s])
return;
vis[s]=1;
for(auto &i:adj[s])
{
if(!vis[i])
{
dfs_with_for_each_loop(i,adj,vis);
}
}
}
void dfs_with_normal_for_loop(long long &s,vector<vector<int>> &adj,vector<bool> &vis)
{
vis[s]=true;
for(int i=0;i<(int)adj[s].size();i++)
{
long long f=adj[s][i];
if(!vis[f])
{
dfs_with_normal_for_loop(f,adj,vis);
}
}
}
///floyd
void floyd(int &n)
{
for(int k=1;k<=n;k++)
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
adj[i][j]=min(adj[i][j],adj[i][k]+adj[k][j]);
}
}
}
}
///bellmanford
void bellmanford(vector<edgeweighted> &edgelist,int &n,int &src)
{
vector<int>dis(n,OOpos);
dis[src]=0;
for(int edges=0;edges<n-1;edges++)
{
for(int i=0,r=0;i<(int)edgelist.size();i++,r=0)
{
edgeweighted nw=edgelist[i];
int d=nw.des,s=nw.src,w=nw.weig;
if(dis[d]>dis[s]+w)
{
dis[d]=dis[s]+w;
r=1;
}
if(!r)
{
break;
}
}
}
}
/// path bellmanford
vector<int>bellmanfordpath(vector<edgeweighted> &edgelist,int &n,int &src)
{
vector<int>dis(n,OOpos);
vector<int>pre(n,-1);
dis[src]=0;
for(int edges=0;edges<n;edges++)
{
for(int i=0,r=0;i<(int)edgelist.size();i++,r=0)
{
edgeweighted nw=edgelist[i];
int d=nw.des,s=nw.src,w=nw.weig;
if(dis[d]>dis[s]+w)
{
dis[d]=dis[s]+w;
pre[d]=s;
r=1;
}
if(!r)
{
break;
}
}
}
reverse(pre.begin(),pre.end());
return pre;
}
///cycle detection bellmanford
bool bellmanfordcd(vector<edgeweighted> &edgelist,int &n,int &src)
{
vector<int>dis(n,OOpos);
dis[src]=0;
for(int edges=0;edges<n;edges++)
{
for(int i=0,r=0;i<(int)edgelist.size();i++,r=0)
{
edgeweighted nw=edgelist[i];
int d=nw.des,s=nw.src,w=nw.weig;
if(dis[d]>dis[s]+w)
{
dis[d]=dis[s]+w;
r=1;
if(edges==n-1)
{
return true;
}
}
if(!r)
{
break;
}
}
}
return false;
}
///bfs
vector<int> BFSPath(int &sr, int &des, vector<vector<int>> &adj,int &sz,vector<bool> &vis)
{
vector<int> par(sz,-1);
vector<int> dis(sz,-1);
queue<int> q;
q.push(sr);
dis[sr]=0;
int depth=0,cur=sr,szq=1;
bool flag=true;
for(;flag&&!q.empty();depth++,szq=(int)q.size())
{
while(flag &&szq--)
{
cur=q.front();
q.pop();
for(int i=0;i<(int)adj[cur].size();i++)
{
int f=adj[cur][i];
if(dis[f]==-1)
{
q.push(f);
dis[f]=depth+1;
par[f]=cur;
}
if(f==des)
{
flag=false;
break;
}
}
}
}
vector<int>pathl;
while(des!=-1)
{
pathl.push_back(des);
des=par[des];
}
reverse(pathl.begin(),pathl.end());
return pathl;
}
vector<int>bfs1 (int &sr,int &sz,vector<vector<int>> &adj,vector<bool> &vis,int &des)
{
vector<int> dis(sz,-1);
queue<int>q;
q.push(sr);
dis[sr]=0;
int depth=0,cur=sr,szq=1;
for(;!q.empty();depth++,szq=(int)q.size())
{
while(szq--)
{
cur=q.front();
q.pop();
for(int i=0;i<(int)adj[cur].size();i++)
{
int f=adj[cur][i];
if(dis[cur]==-1)
{
q.push(f);
dis[f]=depth+1;
}
}
}
}
return dis;
}
vector<long long>bfs2(long long &sr,long long &sz,vector<vector<long long>> &adj,vector<bool> &vis,long long &des)
{
vector<long long>dis(sz,-1);
vis[sr]=true;
dis[sr]=0;
queue<long long>q;
q.push(sr);
while(!q.empty())
{
long long nod=q.front();
q.pop();
for(int i=0;i<(int)adj[nod].size();i++)
{
long long a=adj[nod][i];
if(dis[a]==-1)
{
q.push(a);
dis[a]=dis[nod]+1;
vis[a]=true;
}
}
}
return dis;
}
vector<long long>bfs2path(long long &sr,long long &sz,vector<vector<long long>> &adj,vector<bool> &vis,long long &des)
{
vector<long long>dis(sz,-1);
vector<long long>par(sz);
vis[sr]=true;
dis[sr]=0;
par[sr]=sr;
queue<long long>q;
q.push(sr);
while(!q.empty())
{
long long nod=q.front();
q.pop();
for(int i=0;i<(int)adj[nod].size();i++)
{
long long a=adj[nod][i];
if(dis[a]==-1)
{
q.push(a);
par[a]=nod;
dis[a]=dis[nod]+1;
vis[a]=true;
}
}
}
vector<long long>pathl;
pathl.push_back(des);
long long x=des;
while(x!=sr)
{
x=par[x];
pathl.push_back(x);
}
reverse(pathl.begin(),pathl.end());
return pathl;
}
///DSU
class DSU{
public:
void intial (int &sz , int a[] , int siz[])
{
for(int i=1;i<=sz;i++)
{
a[i]=i;
siz[i]=1;
}
}
int lead(int v,int a[])
{
if(v==a[v])
{
return v;
}
return a[v]=lead(a[v],a);
}
bool samelead(int x,int y,int a[])
{
int l1=lead(x,a);
int l2=lead(y,a);
return l1==l2;
}
void mergeg(int x,int y,int a[],int siz[])
{
int l1=lead(x,a);
int l2=lead(y,a);
if(l1==l2)
{
return;
}
if(siz[l1]>siz[l2])
{
a[l2]=l1;
siz[l1]+=siz[l2];
}
else if(siz[l2]>siz[l1])
{
a[l1]=l2;
siz[l2]+=siz[l1];
}
}
};
int red_to_green_brute_solution(int row,int col){
if (row==0 &&col==0)
{
return 1;
}
int ans=0;
if (col>0){
ans+=red_to_green_brute_solution(row,col-1);
}
if(row>0){
ans+=red_to_green_brute_solution(row-1,col);
}
return ans;
}
int binaryExponentiation(int x,int n)
{
if(n==0)
{
return 1;
}
else if(n%2 == 0)
{ //n is even
return binaryExponentiation(x*x,n/2);
}
else
{ //n is odd
return x*binaryExponentiation(x*x,(n-1)/2);
}
}
vector<int> flatten_arr(vector<vector<int>> &arr2d,int &rows,int &cols){
int sz=rows*cols;
vector<int>arr1d(sz,0);
int idx=0;
for (int i=0;i<rows;i++){
for(int j=0;j<cols;j++){
arr1d[idx]=arr2d[i][j];
idx++;
}
}
return arr1d;
}
int red_to_green_dp_solution(int row,int col){
ans[0][0]=1;
for(int i=0;i<row;i++)
{
for (int j=0;j<col;j++){
if(i+1<row){
ans[i+1][j]+=ans[i][j];
}
if(j+1<col){
ans[i][j+1]+=ans[i][j];
}
}
}
return ans[row-1][col-1];
}
void fast()
{
#ifndef ONLINE_JUDGE
freopen("i.txt", "r", stdin);
freopen("o.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
int main(int argc, char const *argv[])
{
//fast();
return 0;
}