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

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

171023_2577_숫자의 개수

#define _CRT_SECURE_NO_WARNINGS#include #include using namespace std; int main(){int A, B, C;cin >> A >> B >> C;int ans[10] = { 0 };int ans_1 = A*B*C; while (ans_1 > 0){ans[ans_1 % 10]++;ans_1 /= 10;}for (int i = 0; i < 10; ++i){printf("%d\n", ans[i]);}}

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

171023_2490_윷놀이

#include using namespace std; int main(){ for(int i=1; i x; if(x) cnt++; } if(cnt==0) cout

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

171022_NUMB3RS_두니발 박사의 탈옥

#include using namespace std; int main() { int c; //# of case cin >> c; for(int i=0; i > n >> d >> p; int np; double sum=0; bool map[50][50]={0}; double prob[50][50]={0}; //prob[before][after] moving befor->after probability double dp[101][50]={0}; //dp[day][where is he] for(int r=0; r map[r][c]; if(map[r][c]) cnt++; } for(int c=0; cb마을로 가는 확률 prob[a][b] if(map[r][c]) prob[r][c]=(double)1/(doubl..

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

1710221_2302_극장좌석

#include using namespace std; int main(){ int N, M; cin >> N >> M; int vip[41]={0}; int dp[41]={0}; int ans=1; for(int i=1; i> vip[i]; dp[0]=1; dp[1]=1; dp[2]=2; for(int i=3; i

bong sue
'알고리즘 문제 풀이/1DP_과제(~180615)' 카테고리의 글 목록 (56 Page)