답안 #258643

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
258643 2020-08-06T10:03:05 Z dolphingarlic 전차 (CEOI13_tram) C++14
25 / 100
1000 ms 536 KB
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
 
pair<int, int> pos[100001];
set<pair<int, int>> active;
 
inline ll sq(int x) { return ll(x) * ll(x); }
 
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    for (int cnt = 1; cnt <= m; cnt++) {
        char c;
        cin >> c;
        if (c == 'E') {
            if (!active.size()) pos[cnt] = {1, 1};
            else {
                pair<ll, pair<int, int>> best;
                for (int i = 1; i <= n; i++) {
                    for (int j = 1; j < 3; j++) {
                        ll dist = LLONG_MAX;
                        for (pair<int, int> k : active) {
                            dist = min(dist, sq(k.first - i) + sq(k.second - j));
                        }
                        if (dist > best.first) best = {dist, {i, j}};
                    }
                }
                pos[cnt] = best.second;
            }
            active.insert(pos[cnt]);
            cout << pos[cnt].first << ' ' << pos[cnt].second << '\n';
        } else {
            int idx;
            cin >> idx;
            active.erase(pos[idx]);
        }
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 16 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 17 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1054 ms 492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1060 ms 536 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1073 ms 364 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1081 ms 364 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1074 ms 492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1053 ms 396 KB Time limit exceeded
2 Halted 0 ms 0 KB -