about summary refs log tree commit diff
path: root/ntu/smaca.c
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:09:13 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:09:13 +0700
commit9e28e4c7b67c54229df11d355047ac8a88ea1817 (patch)
tree0d9d40db69613c2c49564a3f1987a005d61f4db3 /ntu/smaca.c
parent67393f42f41ab92219deb549f711121c4dab845b (diff)
downloadcp-9e28e4c7b67c54229df11d355047ac8a88ea1817.tar.gz
Normalize pathname
Diffstat (limited to 'ntu/smaca.c')
-rw-r--r--ntu/smaca.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/ntu/smaca.c b/ntu/smaca.c
new file mode 100644
index 0000000..711040a
--- /dev/null
+++ b/ntu/smaca.c
@@ -0,0 +1,61 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+long gcd(long a, long b)
+{
+	long c;
+	while (b) {
+		c = a % b;
+		a = b;
+		b = c;
+	}
+	return a;
+}
+
+int main()
+{
+	char m, n, i, j, l, val0 = 0, *val;
+	long *k, *h, x, g;
+
+	scanf("%hhd %hhd", &m, &n);
+
+	val = malloc(n);
+	for (i = 0; i < n; i++)
+		val[i] = 1;
+
+	k = malloc(m * 4);
+	for (i = 0; i < m; i++)
+		scanf("%ld", &k[i]);
+
+	h = malloc(m * 4);
+	for (i = 0; i < n; i++) {
+		memcpy(h, k, m * 4);
+
+		for (j = 0; j < m; j++) {
+			scanf("%ld", &x);
+			for (l = 0; l < m && x > 1; l++) {
+				g = gcd(h[l], x);
+				h[l] /= g;
+				x /= g;
+			}
+			if (x > 1) {
+				val[i] = 0;
+				for (j++; j < m; j++)
+					scanf("%ld", &x);
+				break;
+			}
+		}
+		
+		if (val[i])
+			val0++;
+	}
+
+	printf("%hhd\n", val0);
+	for (i = 0; i < n; i++)
+		if (val[i])
+			printf("%hhd ", i + 1);
+	puts("\b");
+
+	return 0;
+}