結果
問題 | No.927 Second Permutation |
ユーザー | madoka |
提出日時 | 2019-11-22 22:11:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 5,344 bytes |
コンパイル時間 | 1,837 ms |
コンパイル使用メモリ | 169,188 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 03:50:50 |
合計ジャッジ時間 | 2,798 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 5 ms
5,248 KB |
testcase_11 | AC | 7 ms
5,248 KB |
testcase_12 | AC | 4 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 5 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 8 ms
5,248 KB |
testcase_17 | AC | 8 ms
5,248 KB |
testcase_18 | AC | 8 ms
5,248 KB |
testcase_19 | AC | 8 ms
5,248 KB |
testcase_20 | AC | 8 ms
5,248 KB |
testcase_21 | AC | 8 ms
5,248 KB |
testcase_22 | AC | 8 ms
5,248 KB |
testcase_23 | AC | 8 ms
5,248 KB |
testcase_24 | AC | 4 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 4 ms
5,248 KB |
testcase_29 | AC | 4 ms
5,248 KB |
ソースコード
long long A,B,C,D,E,F, I,J,K, M,N,O,P,Q,R,S,T,U,V, X,Y,Z; //long long A,B,C,D,E,F, H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z; #include <string> #include <bits/stdc++.h> using namespace std; typedef long long ll; #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <string> #include <iomanip> #include <cmath> //typedef pair<long long,long long> P; //typedef pair<long long,P> P1; //typedef pair<P,P> P2; #define pu push #define pb push_back #define mp make_pair #define eps 1e-7 //#define INF 100000000000000000//19桁 #define INF 1e18+5//19桁 #define mod 1000000007 #define fi first #define se second #define rep(i,x) for(long long i=0;i<x;i++) #define repn(i,x) for(long long i=1;i<=x;i++) #define REP(i,n,x) for(long long i=n;i<x;i++) #define REPN(i,n,x) for(long long i=n+1;i<x;i++) #define repn(i,x) for(long long i=1;i<=x;i++) #define rrep(i,x) for(long long i=x-1;i>=0;i--) #define rrepn(i,x) for(long long i=x;i>1;i--) #define SORT(x) sort(x.begin(),x.end()) #define ERASE(x) x.erase(unique(x.begin(),x.end()),x.end()) #define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin()) #define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin()) #define All(x) (x).begin(),(x).end() #define rAll(x) (x).rbegin(),(x).rend() #define ALL(v) (v).begin(),(v).end() //#define MAX(a,b) if(a>b) #define MAX(a,b) (((a)>(b))?(a):(b)) #define MIN(a,b) (((a)<(b))?(a):(b)) const string MINUSINF = "-"; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } void chmax(string &a, string b) { if (a == MINUSINF) a = b; else if (a.size() < b.size()) a = b; else if (a.size() == b.size()) { if (a < b) a = b; } } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } #define pr printf #define re return #define CASET int ___T, case_n = 1; scanf("%d ", &___T); while (___T-- > 0) int GCD(int a, int b) { return b ? GCD(b, a%b) : a; } stack<long long> sta; queue<long long> que; deque<long long> dque; set <string> s_set; long long sum,sum1,sum2,sum3,sum4; long long flg,flg1,flg2,flg3,cnt,cnt1,cnt2,cnt3,cnt4; long long wk,wk1,wk2,wk3,wk4; long long ans; bool f; long long weight[110], value[110]; // 品物の個数は 100 個なので少し余裕持たせてサイズ 110 に ll a[100010][3]; // a[i], b[i], c[i] をそれぞれまとめて a[i][0], a[i][1], a[i][2] にしてしまう long long n,h[100005]; vector<long long> p, c; int vis[200001]; vector<string> fi; int Left[2100][2100], Right[2100][2100], Up[2100][2100], Down[2100][2100]; long long match[10] = {2,5,5,4,5,6,3,7,6}; vector<long long> box; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); long long max,max1; long long min,min1; sum=sum1=sum2=sum3=sum4=0; flg=flg1=flg2=flg3=cnt=cnt1=cnt2=cnt3=cnt4=0; max=max1=0; wk=wk1=wk2=wk3=wk4=0; ans=0; min=min1=INF; //**************************こどふぉ用****************************************** /* std::vector<long long> v(100005); cin >> T; while(T--){ cin >> N >> K; vector<ll> last(N + 1, -INF); map<int,int> M; //M.clear(); int ret=1<<20; for(int i=1;i<=N;i++){ } cout << N << "\n"; } */ //**************************ここからスタート****************************************** //std::cin >> N; //std::cin >> N >> M; //std::cin >> N >> M >> K; //std::cin >> N >> K; //std::cin >> A >> B; //std::cin >> A >> B >> C; //std::vector<long long> v(N); //std::vector<long long> w(N); //std::vector<long long> x(N); //std::vector<int> v(100, 0); //int a[26]={0}; //vector<long long> flagment(N, 0); //vec.push_back(i); //accumulate(vec.begin(), vec.end(), 0) //v.resize // 配列入力1 /* for(long long i=0; i<N; i++){ std::cin >> v[i]; } */ //std::sort(v.begin(),v.end());//昇順ソート //std::sort(v.begin(),v.end(),std::greater<long long>());//降順ソート //通常 /* for(long long i=0; i<N; i++){ } */ //文字列入力 /* string s,t; std::cin >> s; //sort(s.begin(), s.end()); for(long long i=0; i<s.length(); i++){ //wk=(s[i+2]-'0')+10*(s[i+1]-'0')+100*(s[i]-'0'); if(s[i]!='1'){ } } */ /* if(1){ printf("%lld",N); //printf("%lld",N); //puts("Yes"); //printf("%d",st.size()); //文字列の出力 //std::cout << s << std::endl; //printf("%.12f\n",ret); //cout << sum << endl; } else{ //puts("No"); } return 0; */ string s; cin >> s; vector<char> vec; for (int i = 0; i < s.size(); ++i) { vec.push_back(s[i]); } //sort(vec.begin(), vec.end()); std::sort(vec.begin(),vec.end(),std::greater<char>());//降順ソート /* for (int i = 0; i < s.size()-1; ++i) { if(vec[i]!='0' && vec[i+1]!='0' && vec[i]!=vec[i+1]){ flg=1; } } */ cnt=0; for (int i = 0; i < s.size()-1; ++i) { if(vec[i]!='0'){ cnt++; } } for (int i = 0; i < s.size()-1; ++i) { if(vec[i]!=vec[i+1]){ flg=1; } } if(vec[0]=='0' || vec[0+1]=='0' || s.size()<=1 || flg==0 || cnt<=1){ puts("-1"); return 0; } char wwk; char wk; ll i; i=s.size()-2; while(vec[i]=='0'){ i--; } wwk=vec[i+1]; vec[i+1]=vec[i+0]; vec[i+0]=wwk; for (int i = 0; i < s.size(); ++i) { pr("%c",vec[i]); } //cout << vec[K-1] << endl; return 0; }