fragment-header
fragment-markdown
홈
로그인
로그아웃
내 블로그
설정
로그인
백준 4981 (C++) Organize Your Train part II
최초 업로드: 2025-09-17 03:25:32
최근 수정 시간: 2025-09-17 03:25:32
게시자: rlatjwls3333
카테고리: 백준
조회수: 14
# [Silver IV] Organize Your Train part II [문제 링크](https://www.acmicpc.net/problem/4981) ## 문제 설명 <p>RJ Freight, a Japanese railroad company for freight operations has recently constructed exchange lines at Hazawa, Yokohama. The layout of the lines is shown in Figure B-1.</p> <p style="text-align:center"><img alt="" src="https://onlinejudgeimages.s3-ap-northeast-1.amazonaws.com/problem/4981/1.gif" style="height:194px; width:407px"></p> <p style="text-align:center">Figure B-1: Layout of the exchange lines</p> <p>A freight train consists of 2 to 72 freight cars. There are 26 types of freight cars, which are denoted by 26 lowercase letters from "a" to "z". The cars of the same type are indistinguishable from each other, and each car's direction doesn't matter either. Thus, a string of lowercase letters of length 2 to 72 is sufficient to completely express the configuration of a train.</p> <p>Upon arrival at the exchange lines, a train is divided into two sub-trains at an arbitrary position (prior to entering the storage lines). Each of the sub-trains may have its direction reversed (using the reversal line). Finally, the two sub-trains are connected in either order to form the final configuration. Note that the reversal operation is optional for each of the sub-trains.</p> <p>For example, if the arrival configuration is "abcd", the train is split into two sub-trains of either 3:1, 2:2 or 1:3 cars. For each of the splitting, possible final configurations are as follows ("+" indicates final concatenation position):</p> [3:1] abc+d cba+d d+abc d+cba [2:2] ab+cd ab+dc ba+cd ba+dc cd+ab cd+ba dc+ab dc+ba [1:3] a+bcd a+dcb bcd+a dcb+a <p>Excluding duplicates, 12 distinct configurations are possible.</p> <p>Given an arrival configuration, answer the number of distinct configurations which can be constructed using the exchange lines described above.</p> ## 입력 <p>The entire input looks like the following.</p> the number of datasets = m 1st dataset 2nd dataset ... m-th dataset <p>Each dataset represents an arriving train, and is a string of 2 to 72 lowercase letters in an input line.</p> ## 출력 <p>For each dataset, output the number of possible train configurations in a line. No other characters should appear in the output.</p> ## 풀이 직접 셋에 모든 가능한 문자열을 넣어 개수를 세 주었습니다. ``` c++ #include<bits/stdc++.h> using namespace std; string rev(string s) { for(int i=0;i<s.length()/2;i++) swap(s[i], s[s.length()-1-i]); return s; } int main() { ios::sync_with_stdio(0); cin.tie(0); int t; cin >> t; while(t--) { string s; cin >> s; set<string> car; for(int i=0;i<s.length();i++) { car.insert(s.substr(0, i)+s.substr(i, s.length()-i)); car.insert(rev(s.substr(0, i))+s.substr(i, s.length()-i)); car.insert(s.substr(0, i)+rev(s.substr(i, s.length()-i))); car.insert(rev(s.substr(0, i))+rev(s.substr(i, s.length()-i))); car.insert(s.substr(i, s.length()-i)+s.substr(0, i)); car.insert(rev(s.substr(i, s.length()-i))+s.substr(0, i)); car.insert(s.substr(i, s.length()-i)+rev(s.substr(0, i))); car.insert(rev(s.substr(i, s.length()-i))+rev(s.substr(0, i))); } cout << car.size() << '\n'; } } ```