虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

q<b>Console</b>2

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • TCP/IP Socket软件设计

    获取计算机IP地址等网络参数 UDP聊天程序 TCP聊天程序 浏览器的实现

    标签: 获取计算机的名称和IP地址 基本C/S模式的通信实验

    上传时间: 2015-04-12

    上传用户:scnbyh

  • (免费)基于FPGA的机器人视觉系统模块的设计.doc

    基于FPGA的机器人视觉系统模块的设计 关键字: 机器人 视觉系统 集成电路 FPGA     一、概述   视觉技术是近几十年来发展的一门新兴技术。机器视觉可以代替人类的视觉从事检验、目标跟踪、机器人导向等方面的工作,特别是在那些需要重复、迅速的从图象中获取精确信息的场合。尽管在目前硬件和软件技术条件下,机器视觉功能还处于初级水平,但其潜在的应用价值引起了世界各国的高度重视,发达国家如美国、日本、德国、法国等都投入了大量的人力物力进行研究,近年来已经在机器视觉的某些方面获得了突破性的进展,机器视觉在车辆安全技术、自动化技术等应用中也越来越显示出其重要价值。本文根据最新的CMOS图像采集芯片设计了一种通用的视觉系统模块,经过编制不同的图像处理、模式识别算法程序本模块可以应用到足球机器人,无人车辆等各种场合。

    标签: FPGA的机器人视觉系统

    上传时间: 2015-04-25

    上传用户:justgo123

  • NFS服务器实现文件共享

    NFS服务器实现文件共享

    标签: NFS 嵌入式Linux

    上传时间: 2015-05-13

    上传用户:yangkang1192

  • fft analysis

    Use fft to analyse signal by plotting the original signal and its spectrum.  

    标签: matlab fft

    上传时间: 2015-11-23

    上传用户:石灰岩123

  • PCI 总线学习笔记

    一、地址映射与数据传输 二、PCI9054的基本知识 三、PCI9054的寄存器之间的关系

    标签: PCI 总线学习笔记

    上传时间: 2016-02-15

    上传用户:4722656

  • 实验十 子程序结构设计实验

    实验十  子程序结构设计实验

    标签: 实验 程序结构 设计实验

    上传时间: 2016-05-11

    上传用户:txzdll

  • 基于MATLAB的Suzuki信道模型的仿真

    摘要:本文在无线信道的理论基础上,分析了Suzuki信道模型的结构原理,介绍了利用正弦波叠加法构成高斯序列,从而建立Suzuki信道数学模型的方法,并通过Matlab软件对其进行了仿真。仿真结果验证了Suzuki模型同时符合大尺度衰落和小尺度衰落的特点,且可以验证Suzuki信道模型能够仿真平坦衰落信道

    标签: MATLAB Suzuki 信道模型 仿真

    上传时间: 2016-05-15

    上传用户:嘻嘻嘻嘻

  • 101个面试难题及结构化面试题库

    HR工具书   101个面试难题及 结构化面试题库

    标签: 101 面试题

    上传时间: 2016-06-03

    上传用户:慢调写手

  • 离散实验 一个包的传递 用warshall

     实验源代码 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("请输入矩阵第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可传递闭包关系矩阵是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元关系的可传递闭包\n"); void warshall(int,int); int k , n; printf("请输入矩阵的行数 i: "); scanf("%d",&k); 四川大学实验报告 printf("请输入矩阵的列数 j: "); scanf("%d",&n); warshall(k,n); } 

    标签: warshall 离散 实验

    上传时间: 2016-06-27

    上传用户:梁雪文以