1552 点的距离

这是一篇关于利用最近公共祖先(LCA)计算图中两点之间距离的博客。作者通过介绍1552点的距离问题,强调了这是一个常见的模板题,解题关键在于维护节点深度和LCA。题目中,两点间的距离等于它们各自到LCA节点的深度差。

1552 点的距离

我是来练习LCA的小菜鸡…
每次询问x和y之间的距离,问的这么直接,估计是个模板题
其实这个题非常的模板题,两个点的距离为两个点与LCA节点的深度之差
所以我们需要维护节点深度和最近公共祖先
然后套用公式就好了

#include<cstdio>
#include<algorithm>
#include<iostream>
using namespace std;
const int SIZE=1e5+5;
int n,q;
int u,v;
int tot;
int depth[SIZE];
int f[SIZE];
int head[SIZE];
int st[SIZE][SIZE];//从j跳2^i到达的地方 
struct node{
	int next;
	int to;
}e[SIZE];
void add(int u,int v)
{
	tot++;
	e[tot].to=v;
	e[tot].next=head[u];
	head[u]=tot;
}
int lca(int u,int v)
{
	if(depth[u]<depth[v])swap(u,v);
	for(int i=20;i>=0;i--)
	{
		if(depth[st[i][u]]>=depth[v])
			u=st[i][u];
	}
	if(u==v) return u;//找到了
	for(int i=20;i>=0;i--)
		if(st[i][u]!=st[i][v])
            u=st[i][u],v=st[i][v];
}
void dfs(int x,int father)//计算每一个节点的深度 
{
	f[x]=father;
	for(int i=head[x];i;i=e[i].next)
	{
		if(e[i].to==father) continue;//非父亲
		depth[e[i].to]=depth[father]+1;
		dfs(e[i].to,x); 
	}
}
int main()
{
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		cin>>u>>v;
		add(u,v);
		add(v,u);
	}
	depth[1]=1;
	dfs(1,0);
	for(int i=1;i<=n;i++)
	{
		st[0][i]=f[i];//预处理st数组 
	}
	for(int i=1;i<=20;i++)
		for(int j=1;j<=n;j++)
			st[i][j]=st[i-1][st[i-1][j]];
	cin>>q;
	while(q--)
	{
		cin>>u>>v;
		cout<<depth[u]+depth[v]-2*depth[lca(u,v)];
	}
	return 0;
 } 
计算这两条曲线的相似度:std::vector<double> curveA = { 1547,1547,1548,1548,1547,1547,1548,1549,1548,1548,1548,1549,1549,1549,1550,1550,1550,1550,1551,1551,1552,1552,1551,1551,1551,1552,1552,1552,1552,1551,1551,1551,1551,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1551,1551,1551,1551,1551,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1550,1551,1550,1550,1551,1551,1551,1550,1550,1551,1551,1551,1551,1551,1551,1551,1551,1551,1551,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1553,1553,1553,1553,1553,1553,1553,1553,1554,1554,1554,1554,1554,1554,1554,1554,1554,1554,1554,1553,1553,1553,1553,1553,1553,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1552,1551,1551,1551,1551,1552,1552,1552,1552,1552,1552,1552,1553,1553,1553,1553,1554,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1553,1554,1554,1554,1554,1554,1554,1554,1555,1555,1555,1555,1555,1555,1555,1555,1556,1556,1556,1556,1556,1556,1556,1557,1557,1557,1558,1558,1557,1557,1557,1557,1557,1556,1556,1556,1556,1556,1556,1556,1555,1555,1555,1555,1556,1556,1556,1556,1556,1556,1555,1555,1555,1554,1554,1554,1554,1554,1554,1554,1554,1555,1554,1554,1554,1554,1554,1553,1553,1555,1555,1555,1555,1554,1554,1554,1554,1554,1554,1554,1554,1554,1554,1554,1555,1555,1555,1555,1556,1556,1556,1556,1556,1556,1556,1556,1555,1556,1557,1557,1557,1557,1557,1557,1557,1558,1558,1558,1558,1559,1558,1558,1558,1558,1558,1559,1560,1560,1560,1560,1560,1559,1559,1559,1558,1558,1557,1557,1555,1555,1556,1557,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1558,1557,1557,1557,1557,1558,1558,1558,1558,1557,1557,1557,1557,1557,1557,1557,1556,1556,1557,1557,1558,1558,1558,1558,1558,1558,1558,1558,1559,1559,1558,1558,1558,1557,1557,1557,1557,1557,1557,1557,1557,1556,1556,1556,1556,1556,1556,1555,1555,1555,1555,1554,1554,1554,1554,1554,1554,1554,1553,1553,1553,1552,1552,1552,1551,1551,1550,1550,1549,1548,1547,1547,1545,1544,1543,1541,1541,1540,1539,1538,1537,1536,1535,1534,1533,1532,1531,1530,1529,1528,1527,1526,1525,1524,1523,1522,1521,1520,1519,1518,1517,1516,1515,1514,1513,1512,1511,1510,1509,1508,1507,1506,1505,1504,1503,1502,1501,1500,1499,1498,1497,1495,1494,1493,1492,1490,1489,1488,1487,1486,1485,1484,1482,1481,1480,1479,1478,1477,1476,1475,1474,1472,1471,1470,1469,1468,1467,1465,1464,1463,1462,1460,1459,1458,1457,1456,1455,1454,1452,1451,1450,1449,1448,1447,1446,1445,1444,1443,1442,1441,1440,1439,1438,1437,1436,1435,1434,1433,1432,1431,1430,1429,1428,1427,1426,1425,1424,1423,1422,1421,1420,1419,1418,1417,1416,1415,1414,1413,1412,1411,1410,1409,1408,1407,1406,1405,1404,1403,1401,1401,1401,1400,1400,1400,1399,1399,1399,1399,1399,1399,1398,1398,1399,1399,1399,1398,1399,1398,1398,1398,1398,1398,1398,1398,1398,1397,1397,1397,1397,1397,1397,1397,1397,1397,1398,1397,1397,1397,1398,1398,1398,1398,1398,1397,1397,1397,1396,1397,1397,1397,1398,1398,1397,1397,1397,1397,1397,1397,1397,1398,1398,1398,1398,1398,1399,1399,1399,1399,1400,1400,1400,1401,1400,1400,1400,1400,1400,1401,1401,1401,1401,1401,1400,1400,1400,1400,1401,1401,1401,1400,1399,1398,1399,1399,1399,1399,1400,1400,1400,1400,1400,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1401,1400,1400,1400,1400,1400,1400,1401,1401,1401,1401,1400,1400,1400,1400,1400,1400,1400,1399,1399,1400,1400,1400,1400,1400,1401,1401,1401,1401,1401,1401,1401,1402,1402,1402,1402,1402,1402,1403,1403,1403,1402,1403,1403,1403,1403,1402,1402,1402,1402,1402,1402,1401,1402,1402,1402,1402,1401,1402,1402,1402,1402,1402,1401,1402,1401,1401,1401,1401,1400,1401,1401,1401,1401,1401,1401,1401,1401,1401,1402,1402,1402,1402,1402,1402,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1403,1402,1402,1402,1402,1401,1401,1402,1404,1403,1403,1402,1403,1403,1403,1403,1402,1402,1402,1402,1402,1402,1402,1403,1403,1403,1403,1403,1404,1404,1404,1404,1404,1404,1404,1404,1404,1404,1404,1404,1404,1403,1402,1402,1403,1403,1403,1403,1403,1403,1402,1402,1402,1403,1403,1402,1402,1402,1401,1401,1402,1403,1403,1402,1402,1402,1401,1401,1402,1403,1403,1403,1403,1402,1402,1401,1401,1402,1404,1404,1404,1405,1405,1405,1405,1405,1405,1405,1405,1404,1404,1404,1404,1405,1404,1405,1405,1405,1405,1404,1404,1404,1404,1404,1404,1405,1405,1405,1405,1405,1405,1405,1405,1405,1405,1405,1403,1403,1402,1403,1405,1406,1406,1406,1406,1407,1406,1406,1406,1406,1406,1406,1406,1406,1405,1405,1405,1405,1405,1405,1405,1404,1404,1405,1404,1405,1404,1404,1405,1405,1405,1405,1405,1405,1405,1405,1404,1404,1404,1405,1405,1406,1406,1406,1406,1406,1406,1406,1407,1407,1407,1407,1407,1406,1407,1408,1408,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1407,1406,1406,1406,1407,1407,1406,1406,1406,1406,1406,1407,1407,1407,1407,1407,1407,1408,1408,1408,1408,1408,1408,1408,1408,1408,1408,1407,1407,1407,1407,1407,1407,1408,1407,1407,1407,1407,1407,1408,1408,1408,1408,1408,1408,1408,1408,1408,1408,1407,1407,1407,1407,1407,1407,1407,1408,1408,1408,1408,1408,1407,1407,1408,1408,1408,1409,1409,1409,1408,1408,1408,1408,1408,1408,1408,1409,1409,1409,1409,1409,1409,1409,1410,1411,1411,1410,1410,1409,1409,1409,1409,1409,1409,1409,1408,1408,1408,1408,1408,1408,1407,1407,1407,1408,1408,1408,1409,1409,1409,1408,1408,1408,1408,1408,1409,1408,1408,1407,1409,1409,1409,1409,1409,1408,1408,1408,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1409,1410,1410,1410,1410,1410,1410,1410,1410,1409,1410,1411,1412,1412,1412,1412,1412,1412,1412,1412,1412,1412,1412,1412,1412,1411,1411,1411,1411,1411,1411,1412,1411,1412,1411,1411,1411,1411,1411,1412,1412,1412,1412,1412,1412,1411,1411,1411,1411,1411,1411,1412,1412,1412,1412,1412,1413,1413,1413,1412,1412,1412,1412,1412,1412,1412,1412,1411,1411,1411,1411,1411,1411,1411,1410,1411,1411,1411,1412,1412,1412,1412,1412,1412,1412,1412,1412,1412,1413,1413,1414,1413,1413,1413,1413,1414,1415,1415,1415,1415,1415,1416,1415,1415,1416,1416,1416,1416,1416,1417,1417,1417,1417,1418,1418,1418,1418,1419,1419,1420,1421,1421,1422,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1478,1479,1480,1481,1482,1483,1484,1485,1486,1488,1489,1490,1491,1492,1493,1494,1495,1496,1498,1499,1500,1501,1502,1503,1504,1505,1506,1508,1509,1510,1511,1512,1513,1514,1515,1516,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1555,1556,1557,1558,1560,1561,1562,1563,1564,1565,1566,1567,1567,1567,1568,1568,1568,1569,1569,1569,1569,1571,1571,1572,1572,1572,1573,1573,1573,1574,1574,1574,1574,1574,1575,1575,1576,1576,1576,1577,1578,1578,1578,1578,1578,1578,1578,1578,1578,1578,1577,1578,1578,1578,1578,1578,1578,1578,1578,1576,1577,1576,1576,1576,1576,1577,1577,1577,1577,1577,1576,1575,1575,1576,1576,1577,1577,1577,1577,1576,1576,1577,1577,1577,1576,1576,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1578,1578,1578,1578,1577,1578,1578,1578,1578,1578,1578,1577,1577,1577,1577,1577,1577,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1576,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1577,1578,1578,1578,1578,1578,1578,1578,1578,1578,1577,1578,1578,1578,1579,1579,1579,1578,1578,1578,1579,1579,1579,1579,1579,1579,1579,1579,1580,1580,1580,1580,1580,1580,1579,1580,1580,1581,1581,1581,1581,1581,1580,1580,1580,1581,1581,1581,1581,1581,1581,1581,1581,1581,1580,1580,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1581,1582,1581,1581,1581,1581,1581,1581,1582,1581,1582,1582,1582,1582,1582,1581,1581,1582,1581,1581,1581,1582,1582,1582,1582,1582,1582,1582,1582,1582,1582,1581,1581,1580,1581,1581,1581,1581,1581,1582,1582,1581,1581,1581,1581,1581,1581,1581,1581,1581,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1580,1582,1583,1583,1583,1582,1583,1583,1584,1584,1584,1584,1584,1584,1584,1583,1583,1583,1583,1583,1584,1584,1583,1583,1583,1583,1583,1583,1583,1583,1583,1583,1583,1583,1583,1583,1583,1582,1583,1582,1583,1583,1583,1583,1583,1583,1583,1583,1583,1583,1582,1582,1582,1582,1582,1582,1582,1582,1582,1582,1582,1581,1582,1582,1582,1582,1583,1583,1583,1583,1583,1583,1583,1584,1584,1584,1584,1584,1584,1584,1584,1584,1583,1583,1584,1584,1584,1585,1585,1585,1585,1585,1585,1585,1585,1586,1586,1585,1585,1585,1585,1585,1586,1586,1586,1586,1585,1585,1585,1585,1585,1585,1585,1585,1584,1584,1584,1585,1585,1585,1585,1585,1584,1584,1585,1584,1584,1584,1583,1583,1583,1583,1582,1582,1582 }; std::vector<double> curveB = { 1694,1694,1694,1694,1694,1694,1694,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1696,1696,1696,1696,1697,1697,1697,1697,1698,1698,1698,1698,1698,1698,1698,1698,1698,1698,1698,1698,1698,1698,1699,1698,1698,1697,1697,1697,1697,1697,1697,1697,1696,1696,1696,1695,1695,1695,1694,1694,1694,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1694,1694,1694,1694,1694,1695,1695,1695,1694,1694,1694,1695,1695,1695,1695,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1694,1695,1695,1695,1695,1694,1695,1696,1696,1696,1697,1697,1697,1697,1697,1697,1697,1696,1696,1696,1696,1695,1695,1695,1694,1694,1694,1694,1694,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1695,1694,1695,1695,1694,1694,1694,1693,1693,1693,1693,1693,1694,1693,1693,1693,1693,1693,1693,1693,1692,1692,1693,1693,1693,1692,1693,1693,1693,1692,1692,1692,1693,1693,1693,1693,1693,1693,1694,1694,1694,1694,1694,1694,1694,1695,1695,1695,1695,1695,1695,1694,1694,1694,1694,1693,1693,1693,1693,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1693,1693,1692,1693,1693,1693,1693,1693,1692,1693,1693,1693,1692,1692,1692,1692,1692,1692,1692,1692,1692,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1692,1692,1692,1692,1693,1693,1693,1693,1693,1693,1693,1693,1694,1694,1695,1694,1694,1694,1694,1694,1694,1694,1694,1693,1694,1693,1692,1692,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1691,1692,1692,1692,1692,1693,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1691,1691,1691,1691,1691,1691,1691,1690,1690,1690,1690,1689,1689,1689,1689,1689,1689,1688,1688,1688,1687,1686,1686,1686,1686,1685,1685,1684,1683,1682,1681,1681,1680,1679,1678,1677,1676,1675,1673,1673,1672,1671,1670,1669,1668,1667,1666,1665,1664,1663,1662,1661,1660,1659,1658,1657,1655,1654,1653,1652,1651,1650,1649,1648,1647,1646,1645,1644,1643,1642,1641,1640,1639,1638,1637,1636,1635,1634,1633,1632,1631,1630,1629,1628,1627,1625,1624,1623,1622,1621,1620,1619,1618,1617,1615,1614,1613,1612,1611,1610,1609,1608,1607,1606,1605,1604,1603,1602,1601,1600,1599,1598,1597,1596,1595,1594,1593,1592,1591,1590,1589,1588,1587,1586,1585,1584,1583,1582,1581,1580,1579,1578,1577,1576,1575,1574,1573,1572,1571,1570,1569,1568,1567,1566,1565,1564,1563,1562,1561,1560,1559,1558,1557,1556,1555,1554,1553,1552,1551,1550,1549,1548,1547,1546,1545,1544,1543,1542,1541,1540,1539,1538,1537,1537,1536,1536,1535,1534,1533,1532,1532,1531,1530,1530,1530,1529,1529,1529,1527,1527,1527,1526,1525,1526,1526,1526,1526,1526,1526,1526,1525,1524,1524,1524,1524,1524,1524,1523,1523,1523,1523,1523,1523,1523,1523,1523,1524,1524,1524,1524,1524,1524,1524,1524,1523,1523,1524,1523,1523,1523,1523,1523,1523,1523,1523,1523,1523,1523,1522,1522,1522,1522,1522,1522,1522,1522,1522,1522,1522,1522,1523,1523,1523,1523,1523,1523,1523,1524,1525,1525,1525,1525,1525,1525,1526,1526,1526,1526,1526,1526,1526,1526,1526,1526,1526,1526,1526,1525,1525,1525,1525,1525,1524,1524,1524,1523,1523,1523,1524,1524,1524,1523,1523,1523,1523,1523,1523,1523,1523,1523,1523,1523,1523,1522,1522,1522,1522,1522,1523,1523,1522,1522,1522,1522,1522,1522,1521,1521,1521,1521,1521,1519,1518,1517,1516,1515,1513,1512,1510,1509,1507,1506,1505,1504,1503,1502,1501,1500,1499,1498,1497,1496,1495,1494,1493,1493,1492,1492,1491,1491,1491,1490,1490,1490,1489,1489,1488,1487,1487,1487,1488,1488,1487,1487,1487,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1488,1487,1487,1487,1487,1487,1486,1486,1486,1486,1485,1485,1485,1485,1485,1485,1485,1485,1484,1484,1484,1484,1484,1483,1483,1483,1483,1482,1482,1482,1482,1482,1482,1482,1482,1482,1482,1481,1481,1481,1481,1481,1480,1480,1480,1479,1479,1478,1478,1477,1477,1476,1476,1476,1475,1475,1475,1474,1474,1473,1473,1473,1473,1473,1473,1472,1472,1471,1471,1471,1471,1471,1471,1470,1470,1471,1471,1471,1471,1471,1470,1470,1470,1470,1470,1470,1470,1469,1469,1469,1469,1469,1469,1469,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1468,1469,1469,1470,1470,1470,1470,1470,1471,1471,1471,1472,1472,1473,1473,1474,1474,1474,1475,1476,1476,1477,1478,1478,1479,1480,1481,1482,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1506,1507,1508,1509,1510,1511,1513,1514,1515,1517,1516,1516,1515,1516,1517,1517,1517,1517,1517,1517,1517,1517,1517,1516,1516,1516,1516,1516,1516,1516,1516,1516,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1517,1518,1518,1518,1518,1518,1518,1518,1518,1518,1518,1519,1519,1519,1519,1520,1519,1519,1520,1519,1519,1519,1518,1518,1518,1518,1518,1517,1517,1516,1516,1516,1515,1515,1515,1515,1514,1514,1514,1513,1513,1513,1513,1513,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1513,1513,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1514,1515,1515,1515,1515,1515,1515,1515,1516,1516,1515,1515,1516,1516,1516,1516,1517,1517,1517,1517,1517,1518,1518,1518,1518,1519,1519,1519,1519,1519,1519,1519,1518,1518,1517,1516,1515,1515,1514,1514,1514,1514,1513,1513,1513,1512,1512,1512,1512,1511,1511,1512,1512,1512,1512,1512,1512,1512,1512,1511,1511,1511,1511,1511,1511,1511,1511,1512,1512,1512,1512,1512,1512,1512,1512,1512,1511,1511,1511,1511,1511,1512,1512,1512,1512,1512,1512,1513,1512,1513,1513,1513,1513,1513,1513,1514,1514,1514,1514,1514,1514,1514,1514,1515,1515,1515,1516,1517,1517,1517,1516,1516,1516,1516,1516,1516,1516,1515,1514,1514,1514,1514,1513,1513,1513,1513,1513,1513,1512,1512,1512,1513,1513,1512,1513,1513,1513,1513,1513,1513,1513,1513,1513,1514,1514,1514,1514,1514,1514,1514,1514,1515,1516,1516,1517,1518,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1579,1580,1581,1582,1583,1584,1586,1587,1588,1589,1591,1592,1593,1594,1595,1596,1597,1599,1600,1601,1602,1603,1604,1605,1606,1607,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1665,1665,1665,1666,1666,1667,1668,1669,1668,1669,1669,1669,1670,1670,1670,1670,1670,1671,1671,1671,1671,1671,1672,1672,1673,1673,1673,1674,1674,1674,1675,1675,1675,1675,1675,1675,1675,1675,1675,1675,1675,1675,1674,1675,1675,1675,1675,1675,1675,1675,1675,1676,1676,1676,1676,1675,1675,1675,1674,1674,1674,1674,1674,1673,1673,1674,1673,1673,1673,1673,1673,1674,1674,1674,1675,1675,1675,1675,1675,1674,1674,1674,1674,1674,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1672,1672,1672,1672,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1672,1672,1672,1672,1672,1672,1672,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1673,1674,1674,1673,1673,1674,1674,1675,1674,1674,1674,1674,1674,1673,1673,1673,1673,1672,1672,1672,1672,1672,1672,1672,1672,1672,1671,1671,1671,1671,1671,1671,1672,1672,1672,1672,1672,1672,1671,1671,1671,1671,1671,1670,1670,1670,1670,1669,1669,1669,1669,1670,1670,1670,1670,1669,1669,1669,1669,1669,1669,1669,1669,1669,1669,1669,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1671,1671,1672,1671,1671,1671,1671,1671,1671,1672,1672,1672,1672,1672,1673,1673,1673,1673,1672,1672,1672,1671,1671,1670,1669,1670,1670,1670,1670,1670,1670,1669,1669,1669,1669,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1670,1669,1668,1669,1669,1669,1669,1669,1670,1670,1669,1670,1669,1669,1669,1669,1669,1669,1669,1669,1669,1668,1669,1669,1668,1668,1669,1669,1669,1669,1668,1668,1668,1669,1669,1669,1669,1669,1669,1668,1668,1668,1668,1668,1668,1668,1668,1668,1668,1668,1668,1668 };
07-08
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值