-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2021년기출_꿀따기.cpp
113 lines (63 loc) · 1.37 KB
/
2021년기출_꿀따기.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
#include<stdio.h>
int main(){
int n, m=0, m1=0, m2=0, m3=0;
scanf("%d",&n);
if(n<=500){
int a[n]={0};
for(int i=0;i<n;i++){
scanf("%d",&a[i]);
}
int x,y,z; //x,y:国 z:国烹
y=n-1; //国烹 国 国
for(z=0;z<n-2;z++){
for(x=z+1;x<n-1;x++){
for(int i=z;i<x;i++){
m1=0;
m1+=a[i];
}
m1=m1*2;
for(int i=x+1;i<y;i++){
m1+=a[i];
}
if(m<m1){
m=m1;
}
}
}
printf("*%d\n",m);
x=0; //国 国 国烹
for(z=2;z<n;z++){
for(y=1;y<z;y++){
m2=0;
for(int i=y+1;i<z+1;i++){
m2+=a[i];
}
m2=m2*2;
for(int i=1;i<y;i++){
m2+=a[i];
}
if(m<m2){
m=m2;
}
}
}
printf("-%d\n",m);
for(z=1;z<n-1;z++){ //国 国烹 国
for(y=0;y<z;y++){
for(x=z+1;x<n;x++){
m3=0;
for(int i=y+1;i<z+1;i++){
m3+=a[i];
}
for(int i=z;i<x;i++){
m3+=a[i];
}
if(m<m3){
m=m3;
}
}
}
}
}
printf("%d",m);
}