20291 파일정리 문제풀이 #include #include #include #include #include using namespace std; void fast_io(void) { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); } map ma; int n; vector split(string str, char del){ istringstream iss(str); string buf; vector res; while(getline(iss,buf,del)){ res.push_back(buf); } return res; } int main(void) { fast_io(); cin >> n; while(n--) { string str; c..