提交记录 32506
| 用户 | 题目 | 状态 | 得分 | 用时 | 内存 | 语言 | 代码长度 |
|---|---|---|---|---|---|---|---|
| saffah_dsh_260814 | noi17e. 【NOI2017】蔬菜 | Wrong Answer | 0 | 6.814 ms | 4952 KB | C++17 | 1.70 KB |
| 提交时间 | 评测时间 |
|---|---|
| 2026-08-14 11:11:24 | 2026-08-14 11:11:39 |
#include <sys/auxv.h>
#include <stdint.h>
#include <string.h>
using namespace std;
struct DuckInfo { uint64_t abi_version; const char* stdin_ptr; uint64_t stdin_size; char* stdout_ptr; uint64_t stdout_limit; uint64_t stdout_size; char* stderr_ptr; uint64_t stderr_limit; uint64_t stderr_size; const char* IB_ptr; uint64_t IB_limit; char* OB_ptr; uint64_t OB_limit; uint64_t tsc_frequency; } __attribute__((packed));
#define AT_DUCK 0x6b637564UL
typedef long long ll; typedef unsigned long long ull;
static ll varr[200005];
static ull key[200005], keytmp[200005];
static int cnt16[65536];
static inline ll rd(const char*& p){ ll x=0; while(*p<'0'||*p>'9')++p; while(*p>='0'&&*p<='9'){x=x*10+(*p-'0');++p;} return x; }
static void radix64(ull* a,int n){ ull* src=a; ull* dst=keytmp; for(int shift=0;shift<64;shift+=16){ memset(cnt16,0,sizeof(cnt16)); for(int i=0;i<n;i++) cnt16[(src[i]>>shift)&0xFFFF]++; int sum=0; for(int i=0;i<65536;i++){int c=cnt16[i];cnt16[i]=sum;sum+=c;} for(int i=0;i<n;i++){ull x=src[i]; dst[cnt16[(x>>shift)&0xFFFF]++]=x;} ull* t=src;src=dst;dst=t; } if(src!=a) memcpy(a,src,(size_t)n*8); }
static inline void exitasm(){ __asm__ __volatile__("mov $60, %%rax; xor %%rdi, %%rdi; syscall" ::: "rax","rdi","rcx","r11","memory"); }
int main(){
struct DuckInfo *di=(struct DuckInfo*)getauxval(AT_DUCK);
const char* p=di->stdin_ptr;
int n=(int)rd(p), M=(int)rd(p), k=(int)rd(p);
int ng=0;
for(int i=0;i<n;i++){ ll a=rd(p),s=rd(p),c=rd(p),x=rd(p); varr[ng]=a+s; ng++; if(c-1>0) varr[ng++]=a; }
int P=0; for(int i=0;i<k;i++){ ll q=rd(p); if(q>P)P=(int)q; }
for(int i=0;i<ng;i++) key[i]=((ull)varr[i]<<20)|(ull)i;
radix64(key,ng);
di->stdout_ptr[0]='0'; di->stdout_ptr[1]='\n'; di->stdout_size=2;
exitasm();
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 134.71 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #2 | 133.49 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #3 | 133.66 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #4 | 178.23 us | 328 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #5 | 178.88 us | 328 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #6 | 177.66 us | 328 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #7 | 130.95 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #8 | 131.1 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #9 | 131.1 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #10 | 131.29 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #11 | 132.17 us | 284 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #12 | 134.6 us | 288 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #13 | 135.55 us | 288 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #14 | 135.65 us | 288 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #15 | 135.72 us | 288 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #16 | 171.55 us | 320 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #17 | 175.67 us | 328 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #18 | 179.19 us | 320 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #19 | 183.79 us | 328 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #20 | 184.6 us | 328 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #21 | 4.814 ms | 4 MB + 188 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #22 | 5.28 ms | 4 MB + 852 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #23 | 6.111 ms | 4 MB + 188 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #24 | 6.814 ms | 4 MB + 856 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #25 | 6.8 ms | 4 MB + 852 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-09-11 19:18:53 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠