Submission #550901

# Submission time Handle Problem Language Result Execution time Memory
550901 2022-04-19T11:23:35 Z Jomnoi Type Printer (IOI08_printer) C++17
20 / 100
51 ms 35420 KB
#include <bits/stdc++.h>
#define DEBUG false
using namespace std;

vector <char> ans;

class Node {
public :
	int depth;
	bool finish;
	Node *c[26];
	Node() : finish(false), depth(0) {
		for(int i = 0; i < 26; i++) {
			c[i] = NULL;
		}
	}
};

void add(Node *node, string s, int idx = 0) {
	if(idx == s.length()) {
		node->finish = true;
		return;
	}

	int v = s[idx] - 'a';
	if(node->c[v] == NULL) {
		node->c[v] = new Node();
	}

	add(node->c[v], s, idx + 1);

	node->depth = 0;
	for(int i = 0; i < 26; i++) {
		if(node->c[i] != NULL) {
			node->depth = max(node->depth, node->c[i]->depth + 1);
		}
	}
}

void solve(Node *node) {
	if(node->finish == true) {
		ans.push_back('P');
		return;
	}

	vector <pair <int, int>> vec;
	for(int v = 0; v < 26; v++) {
		if(node->c[v] != NULL) {
			vec.emplace_back(node->c[v]->depth, v);
		}
	}

	sort(vec.begin(), vec.end());

	for(auto [l, v] : vec) {
		ans.push_back(v + 'a');
		solve(node->c[v]);
		ans.push_back('-');
	}
}

int main() {
	cin.tie(nullptr)->sync_with_stdio(false);
	int N;
	cin >> N;
	Node *root = new Node();
	for(int i = 1; i <= N; i++) {
		string s;
		cin >> s;
		add(root, s);
	}

	solve(root);

	while(ans.back() == '-') {
		ans.pop_back();
	}

	cout << ans.size() << '\n';
	for(auto c : ans) {
		cout << c << '\n';
	}
	return 0;
}

Compilation message

printer.cpp: In constructor 'Node::Node()':
printer.cpp:10:7: warning: 'Node::finish' will be initialized after [-Wreorder]
   10 |  bool finish;
      |       ^~~~~~
printer.cpp:9:6: warning:   'int Node::depth' [-Wreorder]
    9 |  int depth;
      |      ^~~~~
printer.cpp:12:2: warning:   when initialized here [-Wreorder]
   12 |  Node() : finish(false), depth(0) {
      |  ^~~~
printer.cpp: In function 'void add(Node*, std::string, int)':
printer.cpp:20:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   20 |  if(idx == s.length()) {
      |     ~~~~^~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 320 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 320 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 340 KB didn't print every word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 320 KB Output is correct
2 Incorrect 1 ms 212 KB didn't print every word
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 340 KB didn't print every word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 1748 KB didn't print every word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 5716 KB didn't print every word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 23 ms 14260 KB didn't print every word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 51 ms 35420 KB didn't print every word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 38 ms 27668 KB didn't print every word
2 Halted 0 ms 0 KB -