-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoo
189 lines (186 loc) · 3.12 KB
/
Moo
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
#include <iostream>
using namespace std;
int N;
int S[30];//moo 0903 분할정복, 재귀
void sol(int i){
// cout<<N<<'\n';
if(i==0){
if(N==1) cout<<'m';
else if(N==2||N==3)cout<<'o';
exit(0);
}
if(N<=S[i-1]) {
sol(i-1);
}
if(N>S[i]-S[i-1]){
N-=S[i]-S[i-1];
sol(i-1);
}
else {
if(N==S[i-1]+1) cout<<'m';
else cout<<'o';
exit(0);
}
}
int main() {
cin>>N;
S[0]=3;
int start=0;
for(int i=1;i<30;i++){
S[i]=2*S[i-1]+i+3;
if(S[i]==N) {cout<<'o';return 0;}
else if(S[i]>N){
start=i;
break;
}
}
// cout<<start<<'\n';
sol(start);
return 0;
}
//set 정렬 0909
#include <algorithm>
#include <iostream>
#include <set>
using namespace std;
int N;
struct compare {
bool operator() (const string &a, const string &b) const{
if (a.size() == b.size())
return a < b;
else
return a.size() < b.size();
}
};
int main() {
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
cin>>N;
set<string,compare> s;
string a="";
for(int i=0;i<N;i++){
cin>>a;
s.insert(a);
}
for(auto e:s) cout<<e<<'\n';
}
//find(iterator ,iterator, ??)
#include<algorithm> //find 함수
#include <iostream>
#include <vector>
using namespace std;
int N,M; int arr[200000];
int main() {
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int *p;
cin>>N;
for(int i=0;i<N;i++) cin>>arr[i];
cin>>M;
for(int i=0;i<M;i++){
int k=0;cin>>k;
p=find(arr,arr+N,k);
if(p!=arr+N) cout<<'1'<<'\n';
else cout<<'0'<<'\n';
}
return 0;
}
//포도 시식 다이내믹 프로그래밍
//bottomup
#include <stdio.h>
int main()
{
int dy[10010]={0,};
int a[10010]={0,};
int n,i,j;
scanf("%d",&n);
n+=2;
for(i=3;i<=n;i++)scanf("%d",&a[i]);
for(i=3;i<=n;i++){
dy[i]=dy[i-1];
if(dy[i-2]+a[i]>dy[i])dy[i]=dy[i-2]+a[i];
if(dy[i-3]+a[i-1]+a[i]>dy[i])dy[i]=dy[i-3]+a[i-1]+a[i];
}
printf("%d",dy[n]);
}
//스도쿠 백트랙킹
#include <iostream>
using namespace std;
int sudoku[10][10];
void visit(int x,int y,bool visited[10])
{
if(x==0) x=0;
else if(x==1) x=3;
else x=6;
if(y==0) y=0;
else if(y==1) y=3;
else y=6;
for(int i=x;i<x+3;i++)
{
for(int j=y;j<y+3;j++)
{
if(sudoku[i][j]!=0) visited[sudoku[i][j]]=1;
}
}
}
bool line(int l,int n)
{
for(int i=0;i<9;i++)
{
if(sudoku[i][l]==0) continue;
if(sudoku[i][l]==n) return false;
}
return true;
}
bool row(int r,int n)
{
for(int i=0;i<9;i++)
{
if(sudoku[r][i]==0) continue;
if(sudoku[r][i]==n) return false;
}
return true;
}
void sol(int x,int y) {
if(x>=9||y>=9)
{
for(int i=0;i<9;i++){
for(int j=0;j<9;j++){
cout<<sudoku[i][j]<<" ";
}
cout<<'\n';
}
exit(0);
}
bool visited[10]={0};
visit(x/3,y/3,visited);//3.같은 정사각형 안에서
if(sudoku[x][y]==0)
{
for(int k=1;k<=9;k++)
{
if(!visited[k]&&row(x,k)&&line(y,k))
{
sudoku[x][y]=k;
visited[sudoku[x][y]]=1;
if(y==8) sol(x+1,0);
else sol(x,y+1);
sudoku[x][y]=0;
visited[sudoku[x][y]]=0;
continue;
}
}
if(sudoku[x][y]==0) return;
}
else
{
if(y==8) sol(x+1,0);
else sol(x,y+1);
return;
}
}
int main() {
for(int i=0;i<9;i++)
for(int j=0;j<9;j++)
cin>>sudoku[i][j];
sol(0,0);
return 0;
}