답안 #953515

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
953515 2024-03-26T05:04:40 Z DarkKnight101 Vlak (COCI20_vlak) C++17
0 / 70
1000 ms 524296 KB
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef double lf;
typedef long double Lf;
typedef pair <int,int> pii;
typedef pair <ll, ll> pll;

#define TRACE(x) cerr << #x << "  " << x << endl
#define FOR(i, a, b) for (int i = (a); i < int(b); i++)
#define REP(i, n) FOR(i, 0, n)
#define all(x) (x).begin(), (x).end()
#define _ << " " <<

#define fi first
#define sec second
#define mp make_pair
#define pb push_back

const int ABC = 28;
const int MAXN = 1000010;

struct Node {
  int state;
  Node *child[ABC];

  Node() {
    state = 0;
    REP(i, ABC) child[i] = NULL;
  }
};

int cnt;
Node nodes[MAXN * 2];

Node *newNode() {
  return &nodes[cnt++];
}

struct Trie {
  Node *root;

  Trie() {
    root = newNode();
  }

  void insert(Node *node, string &s, int pos, int mask) {
    Node* temp = node;
    int n = s.length();
    for(int i=0;i<n;i++){
      temp->state|=mask;
      if (!node->child[s[pos] - 'a']) {
        node->child[s[pos] - 'a'] = newNode();
      }
      node = node->child[s[i]-'a'];

    }
  }

  int solve(Node *node, int turn) {
    if (!(node->state & (1 << turn))) {
      return 0;
    }

    for (int i = 0; i < ABC; i++) {
      if (node->child[i] && !solve(node->child[i], turn ^ 1)) {
        return 1;
      }
    }
    return 0;
  }
};

Trie T;

const string ans[] = {"Emilija", "Nina"};

int main() {
  for (int i = 0; i < 2; i++) {
    int n;
    string s;
    cin >> n;
    for (int j = 0; j < n; j++) {
      cin >> s;
      T.insert(T.root, s, 0, (1 << i));
    }
  }

  cout << ans[T.solve(T.root, 0)] << endl;
  return 0;
}

# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2583 ms 524292 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2404 ms 524296 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2543 ms 524292 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2372 ms 524288 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2380 ms 524288 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2357 ms 524288 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2341 ms 524288 KB Time limit exceeded
2 Halted 0 ms 0 KB -