A14651 | Kuzya and Homework
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Kuzya started going to school. He was given math homework in which he was given an array $a$ of length $n$ and an array of symbols $b$ of length $n$ , consisting of symbols '\*' and '/'.
Let's denote a path of calculations for a segment $[l; r]$ ( $1 \le l \le r \le n$ ) in the following way:
- Let $x=1$ initially. For every $i$ from $l$ to $r$ we will consequently do the following: if $b_i=$ '\*', $x=x*a_i$ , and if $b_i=$ '/', then $x=\frac{x}{a_i}$ . Let's call a path of calculations for the segment $[l; r]$ a list of all $x$ that we got during the calculations (the number of them is exactly $r - l + 1$ ).
For example, let $a=[7,$ $12,$ $3,$ $5,$ $4,$ $10,$ $9]$ , $b=[/,$ $*,$ $/,$ $/,$ $/,$ $*,$ $*]$ , $l=2$ , $r=6$ , then the path of calculations for that segment is $[12,$ $4,$ $0.8,$ $0.2,$ $2]$ .
Let's call a segment $[l;r]$ simple if the path of calculations for it contains only integer numbers.
Kuzya needs to find the number of simple segments $[l;r]$ ( $1 \le l \le r \le n$ ). Since he obviously has no time and no interest to do the calculations for each option, he asked you to write a program to get to find that number!
Let's denote a path of calculations for a segment $[l; r]$ ( $1 \le l \le r \le n$ ) in the following way:
- Let $x=1$ initially. For every $i$ from $l$ to $r$ we will consequently do the following: if $b_i=$ '\*', $x=x*a_i$ , and if $b_i=$ '/', then $x=\frac{x}{a_i}$ . Let's call a path of calculations for the segment $[l; r]$ a list of all $x$ that we got during the calculations (the number of them is exactly $r - l + 1$ ).
For example, let $a=[7,$ $12,$ $3,$ $5,$ $4,$ $10,$ $9]$ , $b=[/,$ $*,$ $/,$ $/,$ $/,$ $*,$ $*]$ , $l=2$ , $r=6$ , then the path of calculations for that segment is $[12,$ $4,$ $0.8,$ $0.2,$ $2]$ .
Let's call a segment $[l;r]$ simple if the path of calculations for it contains only integer numbers.
Kuzya needs to find the number of simple segments $[l;r]$ ( $1 \le l \le r \le n$ ). Since he obviously has no time and no interest to do the calculations for each option, he asked you to write a program to get to find that number!
输入格式
The first line contains a single integer $n$ ( $2 \le n \le 10^6$ ).
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i \le 10^6$ ).
The third line contains $n$ symbols without spaces between them — the array $b_1, b_2 \ldots b_n$ ( $b_i=$ '/' or $b_i=$ '\*' for every $1 \le i \le n$ ).
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i \le 10^6$ ).
The third line contains $n$ symbols without spaces between them — the array $b_1, b_2 \ldots b_n$ ( $b_i=$ '/' or $b_i=$ '\*' for every $1 \le i \le n$ ).
输出格式
Print a single integer — the number of simple segments $[l;r]$ .
输入输出样例
输入 #1
3 1 2 3 */*
输出 #1
2
输入 #2
7 6 4 10 1 2 15 1 */*/*//
输出 #2
8
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted