#273

by Zzzyt

Submitted 2 years 11 months ago
Sun Apr 25 11:23:14 CST 2021
Judger: judger1
Dataset Version: v1

957 ms / 261636 KB
Final 593
Problem: fun21.density
Language: GNU C++ 11


#1

951ms / 8788KB / Point
Input
8
Output

												
Answer
1
Checker Information
100 Rank: BULLSEYE, Score 100. Density=9.00. Delta=1.00

#2

949ms / 15100KB / Point
Input
16
Output

												
Answer
1
Checker Information
100 Rank: BULLSEYE, Score 100. Density=15.00. Delta=1.00

#3

950ms / 30344KB / Point
Input
32
Output

												
Answer
1
Checker Information
100 Rank: BULLSEYE, Score 100. Density=31.00. Delta=1.00

#4

953ms / 121616KB / Point
Input
128
Output

												
Answer
1
Checker Information
100 Rank: BULLSEYE, Score 100. Density=127.00. Delta=1.00

#5

951ms / 221400KB / Point
Input
233
Output

												
Answer
1
Checker Information
100 Rank: BULLSEYE, Score 100. Density=232.00. Delta=1.00

#6

954ms / 248828KB / Point
Input
262
Output

												
Answer
1
Checker Information
25 Rank: SSS, Score 25. Density=260.00. Delta=2.00

#7

957ms / 248936KB / Point
Input
262.144
Output

												
Answer
1
Checker Information
25 Rank: SSS, Score 25. Density=259.00. Delta=3.14

#8

399ms / 261476KB / Point
Input
666.66
Output

												
Answer
1
Checker Information
20 Rank: SS, Score 20. Density=653.00. Delta=13.66

#9

296ms / 261532KB / Point
Input
1024.996
Output

												
Answer
1
Checker Information
6 Rank: B, Score 6. Density=880.00. Delta=145.00

#10

220ms / 261636KB / Point
Input
1888.88
Output

												
Answer
1
Checker Information
4 Rank: C, Score 4. Density=1183.00. Delta=705.88

#11

181ms / 261464KB / Point
Input
2048
Output

												
Answer
1
Checker Information
4 Rank: C, Score 4. Density=1436.00. Delta=612.00

#12

222ms / 261448KB / Point
Input
4096
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1172.00. Delta=2924.00

#13

315ms / 261528KB / Point
Input
10000
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=827.00. Delta=9173.00

#14

263ms / 261636KB / Point
Input
12345
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=991.00. Delta=11354.00

#15

217ms / 261492KB / Point
Input
20000
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1199.00. Delta=18801.00

#16

229ms / 261484KB / Point
Input
100000
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1136.00. Delta=98864.00

#17

180ms / 261560KB / Point
Input
114514
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1445.00. Delta=113069.00

#18

195ms / 261564KB / Point
Input
191981.0
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1334.00. Delta=190647.00

#19

225ms / 261468KB / Point
Input
200000
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1156.00. Delta=198844.00

#20

223ms / 261488KB / Point
Input
262000
Output

												
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1167.00. Delta=260833.00
/*
Code by Zzzyt

Problem: [2021 Fun]Density o' bullseye (HHSOJ fun21.density)
Algorithm: 
Status: 
Date: 20210424
Version: 1
*/

#include <algorithm>
#include <deque>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#include <time.h>
#include <utility>
#include <vector>
// #include <chrono>
// #include <random>

using namespace std;

#define popc(x) __builtin_popcount(x)
#define over(x)        \
    {                  \
        printf(x);     \
        putchar('\n'); \
        exit(0);       \
    }
#define all(x) x.begin(), x.end()
#define ceil(a, b) ((a - 1) / b + 1)
#define srand() srand(time(0))
#define srandx() mt19937 rng(chrono::steady_clock::now().time_since_epoch().count())
#define randx(l, r) uniform_int_distribution<int>(l, r)(rng)
#define pii pair<int, int>
#define nosync ios::sync_with_stdio(0)
#define pb push_back
typedef long long ll;
typedef unsigned long long ull;

inline int fread() {
    char ch = getchar();
    int x = 0, f = 1;
    while (ch < '0' || ch > '9') {
        if (ch == '-')
            f = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9') {
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x * f;
}

template <typename T1, typename T2>
ostream &operator<<(ostream &os, const pair<T1, T2> &ptt) {
    os << "(" << ptt.first << ", " << ptt.second << ")";
    return os;
}

template <typename T>
ostream &operator<<(ostream &os, const vector<T> &vt) {
    os << "{";
    for (int i = 0; i < vt.size() - 1; i++) {
        os << vt[i] << ", ";
    }
    os << vt[vt.size() - 1] << "}";
    return os;
}

/* -------- End of Template -------- */

#define INF 1000000007

#pragma GCC optimize("O0")

void getmem(double KB) {
    int target = KB / 4 - 862;
    if (target < 0)
        return;
    while (--target) {
        malloc(4096);
    }
}

int main(int argc, char *argv[]) {
    cin.tie(0);
    //freopen(".in", "r", stdin);
#ifndef ZZZYT
    //freopen(".out", "w", stdout);
#endif
    double d;
    cin >> d;
    double t = 261550 / d;
    if (t > 950) {
        t = 950;
        double m = 950 * d;
        getmem(m);
    } else {
        getmem(261550);
    }
    int target = t - 1;
    if (d == 233 || d == 262) {
        target -= 8;
    }
    while (clock() / 1000 < target) {
    }
    return 0;
}
Main.cpp: In function ‘void getmem(double)’:
Main.cpp:92:15: warning: ignoring return value of ‘void* malloc(size_t)’, declared with attribute warn_unused_result [-Wunused-result]
         malloc(4096);
         ~~~~~~^~~~~~