CF665B Shopping

题目描述

Ayush is a cashier at the shopping center. Recently his department has started a ''click and collect" service which allows users to shop online.

The store contains $ k $ items. $ n $ customers have already used the above service. Each user paid for $ m $ items. Let $ a_{ij} $ denote the $ j $ -th item in the $ i $ -th person’s order.

Due to the space limitations all the items are arranged in one single row. When Ayush receives the $ i $ -th order he will find one by one all the items $ a_{ij} $ ( $ 1<=j<=m $ ) in the row. Let $ pos(x) $ denote the position of the item $ x $ in the row at the moment of its collection. Then Ayush takes time equal to $ pos(a_{i1})+pos(a_{i2})+…+pos(a_{im}) $ for the $ i $ -th customer.

When Ayush accesses the $ x $ -th element he keeps a new stock in the front of the row and takes away the $ x $ -th element. Thus the values are updating.

Your task is to calculate the total time it takes for Ayush to process all the orders.

You can assume that the market has endless stock.

输入格式

The first line contains three integers

n

n

n ,

m

m

m and

k

k

k (

1

n

,

k

100

,

1

m

k

1\le n,k\le 100,1\le m\le k

1≤n,k≤100,1≤m≤k ) — the number of users, the number of items each user wants to buy and the total number of items at the market.

The next line contains

k

k

k distinct integers

p

l

p_{l}

pl​ (

1

<

=

p

l

<

=

k

1<=p_{l}<=k

1<=pl​<=k ) denoting the initial positions of the items in the store. The items are numbered with integers from

1

1

1 to

k

k

k .

Each of the next

n

n

n lines contains

m

m

m distinct integers

a

i

j

a_{ij}

aij​ (

1

<

=

a

i

j

<

=

k

1<=a_{ij}<=k

1<=aij​<=k ) — the order of the

i

i

i -th person.

输出格式

Print the only integer $ t $ — the total time needed for Ayush to process all the orders.

输入输出样例

样例输入1

2 2 5
3 4 1 2 5
1 5
3 1

样例输出1

14

说明/提示

Customer

1

1

1 wants the items

1

1

1 and

5

5

5 .

p

o

s

(

1

)

=

3

pos(1)=3

pos(1)=3 , so the new positions are:

[

1

,

3

,

4

,

2

,

5

]

[1,3,4,2,5]

[1,3,4,2,5] .

p

o

s

(

5

)

=

5

pos(5)=5

pos(5)=5 , so the new positions are:

[

5

,

1

,

3

,

4

,

2

]

[5,1,3,4,2]

[5,1,3,4,2] .

Time taken for the first customer is

3

+

5

=

8

3+5=8

3+5=8 .

Customer

2

2

2 wants the items

3

3

3 and

1

1

1 .

p

o

s

(

3

)

=

3

pos(3)=3

pos(3)=3 , so the new positions are:

[

3

,

5

,

1

,

4

,

2

]

[3,5,1,4,2]

[3,5,1,4,2] .

p

o

s

(

1

)

=

3

pos(1)=3

pos(1)=3 , so the new positions are:

[

1

,

3

,

5

,

4

,

2

]

[1,3,5,4,2]

[1,3,5,4,2] .

Time taken for the second customer is

3

+

3

=

6

3+3=6

3+3=6 .

Total time is

8

+

6

=

14

8+6=14

8+6=14 .

Formally

p

o

s

(

x

)

pos(x)

pos(x) is the index of

x

x

x in the current row.

思路

题上首先给了三个数

n

,

m

,

k

n,m,k

n,m,k,然后在第二行里给出了

k

k

k 个数,然后又

n

×

m

n\times m

n×m 个操作,代表每一次把这个操作的数移动到第一位,其他的往后推,每次移动的时候有一个权值(从第一个数到第这个数的相差的位置数),问的是所有权值的和,数据量不大,直接模拟就好。

看到楼上用的 vector,我这里用数组。

Code

#include <bits/stdc++.h>
using namespace std; int main()
{
int n, m, k, x, ans = 0, a[105];
scanf("%d %d %d", &n, &m, &k);
for (register int i(1); i <= k; ++i)
scanf("%d", &a[i]);
for (register int i(1); i <= n * m; ++i)
{
scanf("%d", &x);
register int j, l;
for (j = 1; j <= k; ++j)
if (a[j] == x)
break;
ans += j;
for (l = j; l >= 2; --l)
a[l] = a[l - 1];
a[1] = x;
}
printf("%d\n", ans);
return 0;
}

广告

绿树公司 - 官方网站:https://wangping-lvshu.github.io/LvshuNew/

绿树智能 - 官方网站:https://wangping-lvshu.github.io/LvshuZhineng/

(现在使用,人人均可获得300元大奖)

CF665B Shopping的更多相关文章

  1. Shopping(山东省第一届ACM省赛)

    Shopping Time Limit: 1000MS Memory limit: 65536K 题目描述 Saya and Kudo go shopping together.You can ass ...

  2. sdutoj 2154 Shopping

    http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2154 Shopping Time Limit: ...

  3. Shopping(SPFA+DFS HDU3768)

    Shopping Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Sub ...

  4. eclipse中 起动tomcat时报Multiple Contexts have a path of "/shopping"

    eclipse中 启动tomcat时报Multiple Contexts have a path of "/shopping". 这个是由于你的server服务器中的server. ...

  5. 洛谷P2732 商店购物 Shopping Offers

    P2732 商店购物 Shopping Offers 23通过 41提交 题目提供者该用户不存在 标签USACO 难度提高+/省选- 提交  讨论  题解 最新讨论 暂时没有讨论 题目背景 在商店中, ...

  6. UVALive - 6572 Shopping Malls floyd

    题目链接: http://acm.hust.edu.cn/vjudge/problem/48416 Shopping Malls Time Limit: 3000MS 问题描述 We want to ...

  7. Codeforces Gym 100803C Shopping 贪心

    Shopping 题目连接: http://codeforces.com/gym/100803/attachments Description Your friend will enjoy shopp ...

  8. Codeforces Round #332 (Div. 2) A. Patrick and Shopping 水题

    A. Patrick and Shopping Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/5 ...

  9. poj 1170 Shopping Offers

    Shopping Offers Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4696   Accepted: 1967 D ...

随机推荐

  1. CSAPP 之 DataLab 详解

    前言 本篇博客将会剖析 CSAPP - DataLab 各个习题的解题过程,加深对 int.unsigned.float 这几种数据类型的计算机表示方式的理解. DataLab 中包含下表所示的 12 ...

  2. Android 4.4系统,User模式adb默认开启,取消授权,开启root调试记录

    开启User模式adb,取消授权,修改如下: 1. /build/core/main.mk  修改以下内容 ifeq (true,$(strip $(enable_target_debugging)) ...

  3. 没想到吧!这个可可爱爱的游戏居然是用 ECharts 实现的!

    摘要:echarts 是一个很强大的图表库,除了我们常见的图表功能,还可以自定义图形,这个功能让我们可以很简单地在画布上绘制一些非常规的图形,基于此,我们来玩一些花哨的:做一个 Flappy Bird ...

  4. extcon驱动及其在USB驱动中的应用

    extcon,是External Connector的简称,用于抽象外部连接器,比如说Audio Jack.USB MicroB/TypeC接口等.它的原型是Android的switch-class驱 ...

  5. [保姆级教程] 如何在 Linux Kernel (V5.17.7) 中添加一个系统调用(System call)

    最近在学习 <linux Kernel Development>,本书用的linux kernel 是v2.6 版本的.看完"系统调用"一节后,想尝试添加一个系统调用, ...

  6. mysql 主从数据同步配置

    一主一从,单向同步 master 数据库的数据变更单向同步到 slave 数据库 互为主从,双向同步 master 数据库的数据变更同步到 slave 数据库,slave 数据库的数据边同步到 mas ...

  7. CentOS7软件环境

    一.软件环境 1.1 centos7 [root@centos7 ~]# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) [r ...

  8. Spring Boot整合模板引擎freemarker

    jsp本质是servlet,渲染都在服务器,freemarker模板引擎也是在服务器端渲染. 项目结构 引入依赖pom.xml <!-- 引入 freemarker 模板依赖 --> &l ...

  9. 从单例谈double-check必要性,多种单例各取所需

    theme: fancy 前言 前面铺掉了那么多都是在讲原则,讲图例.很多同学可能都觉得和设计模式不是很搭边.虽说设计模式也是理论的东西,但是设计原则可能对我们理解而言更加的抽象.不过好在原则东西不是 ...

  10. Hive参数与性能企业级调优

    Hive作为大数据平台举足轻重的框架,以其稳定性和简单易用性也成为当前构建企业级数据仓库时使用最多的框架之一. 但是如果我们只局限于会使用Hive,而不考虑性能问题,就难搭建出一个完美的数仓,所以Hi ...