在android端增删改不能运行。也看不出来是什么,但运行到windows可以运行。 引入sqlite-net-pcl 开发Model
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.T…
解题思路
本题可以用最短路算法——Floyd
AC代码
#include<bits/stdc.h>
#define inf 1e9
using namespace std;
const int N 2e2 50;
int n, m, q, now 0, a, b, c, t[N], G[N][N];int main()
{scanf("%d%d", &n, &m);for(int i 0;i<n;i)sc…