알고리즘 문제 풀이

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

180604_10769_행복한지 슬픈지

//https://www.acmicpc.net/problem/10769 #include using namespace std; int main(){ char str[256]; cin.getline(str, 255); int cnt[2]={0,0}; for(int i=0; str[i]!=0; i++){ if(str[i]==':' && (str[i+1]!=0 && str[i+2]!=0)){ if(str[i+1]=='-'){ if(str[i+2]==')') cnt[0]++; else if(str[i+2]=='(') cnt[1]++; } } } if(cnt[1]==0 && cnt[0]==0) cout cnt[1]) cout

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

180602_4690_완전 세제곱

//https://www.acmicpc.net/problem/4690#include using namespace std; int main(){ int a,b,c,d; for(a=2; a

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

180601_1934_최소공배수

//https://www.acmicpc.net/problem/1934 #include using namespace std; int gcd(int a, int b){ return b? gcd(b, a%b) : a;}int main(){ int t; cin>>t; while(t-->0){ int a, b; cin >> a >> b; if(a

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

180529_11586_지영 공주님의 마법 거울

#include using namespace std; char map[100][100];int main(){ int n; cin >> n; for(int i=0; i> map[i]; int k; cin >> k; if(k==1){ //그대로 for(int i=0; i=0; i--){ for(int j=0; j

bong sue
'알고리즘 문제 풀이' 카테고리의 글 목록 (5 Page)