結果
問題 | No.205 マージして辞書順最小 |
ユーザー | yuppe19 😺 |
提出日時 | 2015-06-23 10:21:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 705 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 51,920 KB |
最終ジャッジ日時 | 2024-11-14 19:05:16 |
合計ジャッジ時間 | 875 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:3: error: ‘vector’ was not declared in this scope 10 | vector<string> s(n, string()); | ^~~~~~ main.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’? 2 | #include <algorithm> +++ |+#include <vector> 3 | using namespace std; main.cpp:10:16: error: expected primary-expression before ‘>’ token 10 | vector<string> s(n, string()); | ^ main.cpp:10:18: error: ‘s’ was not declared in this scope 10 | vector<string> s(n, string()); | ^ main.cpp:9:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | int n; scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
#include <iostream> #include <algorithm> using namespace std; class range {private: struct I{int x;int operator*(){return x;}bool operator!=(I& lhs){return x<lhs.x;}void operator++(){++x;}};I i,n; public:range(int n):i({0}),n({n}){}range(int i,int n):i({i}),n({n}){}I& begin(){return i;}I& end(){return n;}}; int main(void) { int n; scanf("%d", &n); vector<string> s(n, string()); for(int i : range(n)) { cin >> s[i]; s[i] += 'z' + 1; } string t; for( ; ; ) { int p = -1; for(int i : range(n)) { if(s[i].size() > 1 && (p == -1 || s[p] > s[i])) { p = i; } } if(p < 0) { break; } t += s[p][0]; s[p] = s[p].substr(1); } cout << t << endl; return 0; }