Submission #53824

# Submission time Handle Problem Language Result Execution time Memory
53824 2018-07-01T08:57:02 Z grumpy_gordon City (JOI17_city) C++17
8 / 100
533 ms 53664 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#include "Encoder.h"
const int maxn = 3e5 + 10;
const double w = 1.05;

vector<int> e[maxn];

int t;

void dfs(int v, int par){
    int tin = t++;
    for (int i : e[v])
    if (i != par)
        dfs(i, v);
    int val = 0;
    double kek = 1;
    while ((int)kek < t - tin)
        val++, kek *= 1.05;
    t = tin + (int)pow(w, val);
    Code(v, val * (ll)maxn + tin);
}

void Encode(int N, int A[], int B[])
{
    int n = N;
    for (int i = 0; i < n - 1; i++){
        int v = A[i], u = B[i];
        e[v].push_back(u);
        e[u].push_back(v);
    }
    dfs(0, -1);
}
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#include "Encoder.h"
const int maxn = 3e5 + 10;
const double w = 1.05;

double mas[2000];

void InitDevice(){
	mas[0] = 1;
    for (int i = 1; i < 2000; i++)
		mas[i] = mas[i - 1] * w;
}

int Answer(long long S, long long T)
{
    int a = S / maxn, b = S % maxn, c = T / maxn, d = T % maxn;
    
    a = b + (int)mas[a] - 1;
    c = d + (int)mas[c] - 1;
    if (a >= c && b <= d)
        return 1;
    if (a <= c && b >= d)
        return 0;
    return 2;
}
# Verdict Execution time Memory Grader output
1 Correct 9 ms 14848 KB Output is correct
2 Correct 9 ms 14848 KB Output is correct
3 Correct 9 ms 14848 KB Output is correct
4 Correct 10 ms 14848 KB Output is correct
5 Correct 11 ms 14816 KB Output is correct
6 Correct 9 ms 14848 KB Output is correct
7 Correct 8 ms 14848 KB Output is correct
8 Correct 9 ms 14848 KB Output is correct
9 Correct 9 ms 14848 KB Output is correct
10 Correct 9 ms 14848 KB Output is correct
11 Correct 9 ms 14848 KB Output is correct
12 Correct 9 ms 14848 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 167 ms 21744 KB Output is correct - L = 40801360
2 Correct 168 ms 21744 KB Output is correct - L = 41101370
3 Correct 168 ms 21760 KB Output is correct - L = 40801360
4 Correct 169 ms 21744 KB Output is correct - L = 41101370
5 Correct 532 ms 53624 KB Output is correct - L = 77702590
6 Incorrect 533 ms 53664 KB Wrong Answer [6]
7 Halted 0 ms 0 KB -