# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
95920 | Retro3014 | Selling RNA Strands (JOI16_selling_rna) | C++17 | 675 ms | 72908 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <stdio.h>
using namespace std;
typedef long long ll;
#define MAX_M 100000
int N, M;
vector<string> S, P, Q;
string str;
struct ST{
ST (string s, int idx, bool b1, bool b2) : s(s), idx(idx), b1(b1), b2(b2) {}
string s;
int idx;
bool b1, b2;
bool operator <(const ST &a)const{
return s<a.s;
}
};
vector<ST> v1, v2;
struct PT{
PT (int x, int y) : x(x), y(y) {}
int x, y;
};
vector<PT> vS, vP[2];
struct SEG{
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |