BOJ

알고리즘 문제 풀이/1DP_과제(~180615)

171201_1316_그룹 단어 체커

//https://www.acmicpc.net/problem/1316 #include #include using namespace std; int main(){ int N; cin >> N; int cnt=0; for(int i=0; i> word; bool alphbet[26]={0}; bool chk=0; int l=word.size(); for(int j=0; j0 && word[j]!=word[j-1] && alphbet[word[j]-'a']) chk=1; alphbet[word[j]-'a']=1; } if(!chk) cnt++; } cout

알고리즘 문제 풀이/1DP_과제(~180615)

171128_1495_기타리스트

//https://www.acmicpc.net/problem/1495 #include #include #include using namespace std; bool dp[101][1001]; int V[101]; int main(){ int N, S, M; cin >> N >> S >> M; int x, y; for(int i=1; i> V[i]; dp[0][S]=1; for(int i=1; i

알고리즘 문제 풀이/1DP_과제(~180615)

171127_14891_톱니바퀴

//https://www.acmicpc.net/problem/14891 #include using namespace std; int main(){ char gear_input[4][8]; bool gear[4][8]; for(int i=0; i> gear_input[i]; for(int i=0; i> K; while(K-->0) { int rot_gear, dir; cin >> rot_gear >> dir; bool rot_chk[4][2]; for(int i=0; i

알고리즘 문제 풀이/1DP_과제(~180615)

171127_1476_날짜 계산

//https://www.acmicpc.net/problem/1476 #include using namespace std; int main(){ int E, S, M; cin >> E >> S >> M; E%=15; S%=28; M%=19; for(int i=1; ;i++) if((i%15)==E && (i%28)==S && (i%19)==M) { cout

bong sue
'BOJ' 태그의 글 목록 (28 Page)