Vector Slice Vector를 자르는 방법.#include #include using namespace std;int main(){ vectorint> a = {1, 2, 3, 4, 5, 6}; vectorint> aa = vectorint>(a.begin() + 2, a.end() - 2); for (auto i : aa) cout i "\n"; return 0;}함수로 만드는 경우.#include #include using namespace std;template typename T>void VecSlice(vectorT> &InVec, int i, int j){ InVec = vectorT>(InVec.begin() + i, InVec.end() ..
백준 2636 치즈 C++. 백준 2636번 "치즈" 문제의 자세한 내용은 글 하단의 문제 링크를 참고하세요. 2636번 문제에 주어지는 입력 및 예시 입력: 13 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 0 1 1 0 0 0 0 1 1 1 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0..
백준 14502번 연구소 C++. 백준 14502번 "연구소" 문제의 자세한 내용은 글 하단의 문제 링크를 참고하세요. 14502번 문제에 주어지는 입력 및 예시 입력: 7 7 2 0 0 0 1 1 0 0 0 1 0 1 2 0 0 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 출력: 27 코드 백준 14502번 "연구소" 문제의 코드입니다. #include using namespace std; vector virus,wall; int n,m,result,tmp; int a[8][8],visited[8][8]; int dx[4]={0, 1, 0, -1}; int dy[4]={-1, 0, 1, 0}; //위오아왼 void dfs(in..
백준 4949 균형잡힌 세상. 백준 4949번 "균형잡힌 세상" 문제의 자세한 내용은 글 하단의 문제 링크를 참고하세요. 4949번 문제에 주어지는 입력 및 예시 입력: So when I die (the [first] I will see in (heaven) is a score list). [ first in ] ( first out ). Half Moon tonight (At least it is better than no Moon at all]. A rope may form )( a trail in a maze. Help( I[m being held prisoner in a fortune cookie factory)]. ([ (([( [ ] ) ( ) (( ))] )) ]). . . 출력: yes y..